Completed
Push — master ( 3d5774...6cab55 )
by Roman
03:17
created
tests/ServiceProviderTest.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,13 +3,15 @@
 block discarded – undo
3 3
 use Mockery as m;
4 4
 
5 5
 if (!function_exists('env')) {
6
-    function env($name, $default = null) {
6
+    function env($name, $default = null)
7
+    {
7 8
         return $default;
8 9
     }
9 10
 }
10 11
 
11 12
 if (!function_exists('config_path')) {
12
-    function config_path($path) {
13
+    function config_path($path)
14
+    {
13 15
         return $path;
14 16
     }
15 17
 }
Please login to merge, or discard this patch.
tests/CacheStorageTest.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,4 +49,6 @@
 block discarded – undo
49 49
     }
50 50
 }
51 51
 
52
-abstract class TaggedStoreStub extends \Illuminate\Cache\TaggableStore implements \Illuminate\Contracts\Cache\Store {}
52
+abstract class TaggedStoreStub extends \Illuminate\Cache\TaggableStore implements \Illuminate\Contracts\Cache\Store
53
+{
54
+}
Please login to merge, or discard this patch.
src/Guard.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,7 @@
 block discarded – undo
48 48
         Request $request,
49 49
         Blacklist $blacklist,
50 50
         Signer $signer
51
-    )
52
-    {
51
+    ) {
53 52
         $this->request = $request;
54 53
         $this->provider = $provider;
55 54
         $this->blacklist = $blacklist;
Please login to merge, or discard this patch.