Skip to content

Commit

Permalink
Apply fixes from StyleCI (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
drfraker authored Feb 26, 2019
1 parent 34744a0 commit a9763ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Snipe.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected function newSnapshot()
/**
* Scan migration files for sum of last modified times.
*
* @return integer
* @return int
*/
protected function migrationFileTimeSum()
{
Expand All @@ -98,7 +98,7 @@ protected function migrationFilesHaveChanged($timeSum): bool

$storedTimeSum = file_exists($snipeFile) ? file_get_contents($snipeFile) : 0;

return (int)$storedTimeSum !== $timeSum || !file_exists(config('snipe.snapshot-location'));
return (int) $storedTimeSum !== $timeSum || ! file_exists(config('snipe.snapshot-location'));
}

/**
Expand Down

0 comments on commit a9763ce

Please sign in to comment.