for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Spiral Framework, IDE Helper
*
* @author Dmitry Mironov <[email protected]>
* @licence MIT
*/
namespace Spiral\IdeHelper;
use Spiral\Core\InjectableConfig;
* Class IdeHelperConfig
* @package Spiral\IdeHelper
class IdeHelperConfig extends InjectableConfig
{
const CONFIG = 'modules/ide-helper';
* @var array
protected $config = [
'writers' => [],
'locators' => [],
'scopes' => [],
];
* @return array
public function getWriters(): array
return $this->config['writers'];
}
public function getLocators(): array
return $this->config['locators'];
public function getScopes(): array
return $this->config['scopes'];