Merge pull request #12 from timw4mail/scrutinizer-patch-2
Scrutinizer Auto-Fixes
This commit is contained in:
commit
b0f5bdf668
@ -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'],
|
||||
|
@ -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)
|
||||
|
@ -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
|
Loading…
Reference in New Issue
Block a user