Passed
Push — master ( 95e0be...6ed1f1 )
by Aimeos
08:31 queued 23s
created

Classes/Base/Config.php (4 issues)

Labels
Severity
1
<?php
2
3
/**
4
 * @license GPLv3, http://www.gnu.org/copyleft/gpl.html
5
 * @copyright Aimeos (aimeos.org), 2016-2017
6
 * @package TYPO3
7
 */
8
9
10
namespace Aimeos\Aimeos\Base;
11
12
13
/**
14
 * Aimeos config class
15
 *
16
 * @package TYPO3
17
 */
18
class Config
19
{
20
	private static $config;
21
22
23
	/**
24
	 * Creates a new configuration object.
25
	 *
26
	 * @param array $paths Paths to the configuration directories
27
	 * @param array $local Multi-dimensional associative list with local configuration
28
	 * @return \Aimeos\MW\Config\Iface Configuration object
29
	 */
30
	public static function get( array $paths, array $local = [] ) : \Aimeos\MW\Config\Iface
0 ignored issues
show
The type Aimeos\MW\Config\Iface 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...
31
	{
32
		if( self::$config === null )
33
		{
34
			// Using extension config directories
35
			if( is_array( $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['aimeos']['confDirs'] ) )
36
			{
37
				ksort( $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['aimeos']['confDirs'] );
38
				foreach( $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['aimeos']['confDirs'] as $dir )
39
				{
40
					if( ( $absPath = \TYPO3\CMS\Core\Utility\GeneralUtility::getFileAbsFileName( $dir ) ) !== '' ) {
41
						$paths[] = $absPath;
42
					}
43
				}
44
			}
45
46
			$conf = new \Aimeos\MW\Config\PHPArray( array(), $paths );
0 ignored issues
show
The type Aimeos\MW\Config\PHPArray 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...
47
48
			if( (bool) \Aimeos\Aimeos\Base::getExtConfig( 'useAPC', false ) === true ) {
49
				$conf = new \Aimeos\MW\Config\Decorator\APC( $conf, \Aimeos\Aimeos\Base::getExtConfig( 'apcPrefix', 't3:' ) );
0 ignored issues
show
The type Aimeos\MW\Config\Decorator\APC 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...
50
			}
51
52
			self::$config = $conf;
53
		}
54
55
		if( isset( $local['typo3']['tsconfig'] ) ) {
56
			$local = array_replace_recursive( $local, \Aimeos\Aimeos\Base::parseTS( $local['typo3']['tsconfig'] ) );
57
		}
58
59
		return new \Aimeos\MW\Config\Decorator\Memory( self::$config, $local );
0 ignored issues
show
The type Aimeos\MW\Config\Decorator\Memory 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...
60
	}
61
}
62