Scrutinizer Auto-Fixes

This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
This commit is contained in:
Scrutinizer Auto-Fixer 2016-01-05 14:55:08 +00:00
parent e9e16dd2b1
commit 2b5d650ef8
3 changed files with 4 additions and 4 deletions

View File

@ -94,11 +94,11 @@ class MangaListTransformer extends AbstractTransformer {
{
$private = (array_key_exists('private', $item))
? (bool)$item['private']
: false;
: FALSE;
$rereading = (array_key_exists('rereading', $item))
? (bool)$item['rereading']
: false;
: FALSE;
$map = [
'id' => $item['id'],

View File

@ -139,7 +139,7 @@ class API extends BaseModel {
*
* @codeCoverageIgnore
* @param array $array
* @param string $key
* @param string $sort_key
* @return void
*/
protected function sort_by_name(&$array, $sort_key)

View File

@ -39,7 +39,7 @@ class DB extends BaseModel {
public function __construct(ContainerInterface $container)
{
parent::__construct($container);
$this->db_config = (array) $this->config->get('database');
$this->db_config = (array)$this->config->get('database');
}
}
// End of BaseDBModel.php