Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 148 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
namespace League\Flysystem;
|
|
|
6 |
|
|
|
7 |
class UnableToCheckFileExistence extends UnableToCheckExistence
|
|
|
8 |
{
|
|
|
9 |
public function operation(): string
|
|
|
10 |
{
|
|
|
11 |
return FilesystemOperationFailed::OPERATION_FILE_EXISTS;
|
|
|
12 |
}
|
|
|
13 |
}
|