ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
NotSupportingVisibilityTrait.php
Go to the documentation of this file.
1
<?php
2
3
namespace
League\Flysystem\Adapter\Polyfill
;
4
5
use
LogicException
;
6
7
trait NotSupportingVisibilityTrait
8
{
16
public
function
getVisibility(
$path
)
17
{
18
throw
new
LogicException
(get_class($this) .
' does not support visibility. Path: '
.
$path
);
19
}
20
29
public
function
setVisibility(
$path
, $visibility)
30
{
31
throw
new
LogicException
(get_class($this) .
' does not support visibility. Path: '
.
$path
.
', visibility: '
. $visibility);
32
}
33
}
LogicException
$path
$path
Definition:
serviceValidate.php:27
League\Flysystem\Adapter\Polyfill
Definition:
NotSupportingVisibilityTrait.php:3
libs
composer
vendor
league
flysystem
src
Adapter
Polyfill
NotSupportingVisibilityTrait.php
Generated on Sat Jan 18 2025 19:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)