src/DefaultServicesProvider.php
Showing 13 of 13 total issues
Method register
has 102 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function register(PimpleContainer $container) { /** @var Collection $settings */ $settings = $container->get('settings');
Avoid too many return
statements within this method. Open
Open
return $driver;
Avoid too many return
statements within this method. Open
Open
return new SlimDatabase($db['dsn'], $db['user'], $db['pass'], [ \PDO::ATTR_DEFAULT_FETCH_MODE => \PDO::FETCH_CLASS ]);
Avoid too many return
statements within this method. Open
Open
return $view;
Avoid too many return
statements within this method. Open
Open
return new Uploader($settings['upload']);
Avoid too many return
statements within this method. Open
Open
return new Database\Migrator($container->get('db'), $directory);
Avoid too many return
statements within this method. Open
Open
return array_merge($commands, $settings->get('commands', []));
Avoid too many return
statements within this method. Open
Open
return function ($class) use ($container) { if (!class_exists($class)) { throw new \LogicException("Data model class {$class} not exists "); }
Avoid too many return
statements within this method. Open
Open
return function ($data, array $rules) use ($container) { if ($data instanceof ServerRequestInterface) { $data = $data->getParsedBody(); }
Avoid too many return
statements within this method. Open
Open
return new Logger($settings['basename'], $settings['logger'] ?: []);
Avoid too many return
statements within this method. Open
Open
return new Mailer( $container->get(Mailer\MailDriverInterface::class) );
Avoid too many return
statements within this method. Open
Open
return new FileSystem($settings->get('filesystem', []));
Function register
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
Open
public function register(PimpleContainer $container) { /** @var Collection $settings */ $settings = $container->get('settings');
- Read upRead up