Skip to content

Commit

Permalink
Apply fixes from StyleCI (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
XavRsl authored Jun 21, 2018
1 parent 29fa5ff commit 2dbb0d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ApiDataChecker.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ public static function check($data)

public static function getDataTypes()
{
return array_slice(array_keys(ApiDataChecker::SCHEMA['root']), 1);
return array_slice(array_keys(self::SCHEMA['root']), 1);
}
}
2 changes: 1 addition & 1 deletion src/Models/Authors.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function add(array $authors): array
return $this->list;
}

for ($i = 0; $i < $count; ++$i) {
for ($i = 0; $i < $count; $i++) {
$this->addUnknownAttributes($authors, $i);
}

Expand Down

0 comments on commit 2dbb0d9

Please sign in to comment.