Merge pull request #2754 from GrahamCampbell/fixes

Minor CS Fixes
This commit is contained in:
Taylor Otwell
2014-04-11 17:17:01 -05:00
22 changed files with 23 additions and 23 deletions

View File

@@ -15,4 +15,4 @@ return array(
);
);

View File

@@ -121,4 +121,4 @@ return array(
'pretend' => false,
);
);

View File

@@ -56,4 +56,4 @@ return array(
),
);
);

View File

@@ -17,4 +17,4 @@ return array(
'driver' => 'array',
);
);

View File

@@ -18,4 +18,4 @@ return array(
'driver' => 'array',
);
);

View File

@@ -28,4 +28,4 @@ return array(
'email' => '',
);
);

View File

@@ -15,4 +15,4 @@ class BaseController extends Controller {
}
}
}
}

View File

@@ -20,4 +20,4 @@ class HomeController extends BaseController {
return View::make('hello');
}
}
}

View File

@@ -14,4 +14,4 @@ class DatabaseSeeder extends Seeder {
// $this->call('UserTableSeeder');
}
}
}

View File

@@ -77,4 +77,4 @@ Route::filter('csrf', function()
{
throw new Illuminate\Session\TokenMismatchException;
}
});
});

View File

@@ -1,4 +1,4 @@
<?php
<?php
return array(
@@ -17,4 +17,4 @@ return array(
'next' => 'Next &raquo;',
);
);

View File

@@ -49,4 +49,4 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
return $this->email;
}
}
}

View File

@@ -14,4 +14,4 @@
Route::get('/', function()
{
return View::make('hello');
});
});

View File

@@ -14,4 +14,4 @@ class ExampleTest extends TestCase {
$this->assertTrue($this->client->getResponse()->isOk());
}
}
}

View File

@@ -10,4 +10,4 @@
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
</div>
</body>
</html>
</html>