Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
  • Loading branch information
iulyanp committed Jan 19, 2017
1 parent 0dbf211 commit c453877
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Twig/MixExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ private function readManifest()
{
static $manifest;

if (! $manifest) {
if (!$manifest) {
$manifestPath = sprintf('%s/%s', $this->webDir, self::MANIFEST);

if (! file_exists($manifestPath)) {
if (!file_exists($manifestPath)) {
throw new \Exception(
'The Laravel Mix manifest file does not exist. ' .
'The Laravel Mix manifest file does not exist. '.
'Please run "npm run webpack" and try again.'
);
}
Expand Down

0 comments on commit c453877

Please sign in to comment.