Issues (20)

src/Base/Filesystem/FlyMemory.php (2 issues)

Labels
Severity
1
<?php
2
3
/**
4
 * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
5
 * @copyright Aimeos (aimeos.org), 2015-2024
6
 * @package Base
7
 * @subpackage Filesystem
8
 */
9
10
11
namespace Aimeos\Base\Filesystem;
12
13
use League\Flysystem\Filesystem;
14
use League\Flysystem\Memory\MemoryAdapter;
0 ignored issues
show
The type League\Flysystem\Memory\MemoryAdapter was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
15
16
17
/**
18
 * Implementation of Flysystem memory file system adapter
19
 *
20
 * @package Base
21
 * @subpackage Filesystem
22
 */
23
class FlyMemory extends FlyBase implements Iface, DirIface, MetaIface
24
{
25
	private ?Filesystem $fs = null;
26
27
28
	/**
29
	 * Returns the file system provider
30
	 *
31
	 * @return \League\Flysystem\Filesystem File system provider
32
	 */
33
	protected function getProvider()
34
	{
35
		if( !isset( $this->fs ) ) {
36
			$this->fs = new Filesystem( new \League\Flysystem\InMemory\InMemoryFilesystemAdapter() );
0 ignored issues
show
The type League\Flysystem\InMemor...MemoryFilesystemAdapter was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
37
		}
38
39
		return $this->fs;
40
	}
41
}
42