Passed
Push — master ( b6e6d3...fad019 )
by Php Easy Api
02:50
created
src/resta/Contracts/AccessorContracts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,5 +13,5 @@
 block discarded – undo
13 13
      * @param array $data
14 14
      * @return mixed
15 15
      */
16
-    public function set($data=array());
16
+    public function set($data = array());
17 17
 }
18 18
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Contracts/ExceptionContracts.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,71 +8,71 @@
 block discarded – undo
8 8
      * @param null $msg
9 9
      * @return mixed
10 10
      */
11
-    public function invalidArgument($msg=null);
11
+    public function invalidArgument($msg = null);
12 12
 
13 13
     /**
14 14
      * @param null $msg
15 15
      * @return mixed
16 16
      */
17
-    public function badFunctionCall($msg=null);
17
+    public function badFunctionCall($msg = null);
18 18
 
19 19
     /**
20 20
      * @param null $msg
21 21
      * @return mixed
22 22
      */
23
-    public function badMethodCall($msg=null);
23
+    public function badMethodCall($msg = null);
24 24
 
25 25
     /**
26 26
      * @param null $msg
27 27
      * @return mixed
28 28
      */
29
-    public function domain($msg=null);
29
+    public function domain($msg = null);
30 30
 
31 31
     /**
32 32
      * @param null $msg
33 33
      * @return mixed
34 34
      */
35
-    public function length($msg=null);
35
+    public function length($msg = null);
36 36
 
37 37
     /**
38 38
      * @param null $msg
39 39
      * @return mixed
40 40
      */
41
-    public function logic($msg=null);
41
+    public function logic($msg = null);
42 42
 
43 43
     /**
44 44
      * @param null $msg
45 45
      * @return mixed
46 46
      */
47
-    public function outOfRange($msg=null);
47
+    public function outOfRange($msg = null);
48 48
 
49 49
     /**
50 50
      * @param null $msg
51 51
      * @return mixed
52 52
      */
53
-    public function overflow($msg=null);
53
+    public function overflow($msg = null);
54 54
 
55 55
     /**
56 56
      * @param null $msg
57 57
      * @return mixed
58 58
      */
59
-    public function range($msg=null);
59
+    public function range($msg = null);
60 60
 
61 61
     /**
62 62
      * @param null $msg
63 63
      * @return mixed
64 64
      */
65
-    public function runtime($msg=null);
65
+    public function runtime($msg = null);
66 66
 
67 67
     /**
68 68
      * @param null $msg
69 69
      * @return mixed
70 70
      */
71
-    public function underflow($msg=null);
71
+    public function underflow($msg = null);
72 72
 
73 73
     /**
74 74
      * @param null $msg
75 75
      * @return mixed
76 76
      */
77
-    public function unexpectedValue($msg=null);
77
+    public function unexpectedValue($msg = null);
78 78
 }
79 79
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Contracts/ContainerContracts.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param $callback null
11 11
      * @return mixed
12 12
      */
13
-    public function bind($object=null,$callback=null);
13
+    public function bind($object = null, $callback = null);
14 14
 
15 15
     /**
16 16
      * @param $abstract
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
      * @param $container false
38 38
      * @return mixed
39 39
      */
40
-    public function make($object=null,$callback=null,$container=false);
40
+    public function make($object = null, $callback = null, $container = false);
41 41
 
42 42
     /**
43 43
      * @param null $object
44 44
      * @param null $callback
45 45
      * @return mixed
46 46
      */
47
-    public function share($object=null,$callback=null);
47
+    public function share($object = null, $callback = null);
48 48
 
49 49
     /**
50 50
      * @method singleton
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
      * @param array $bind
58 58
      * @return mixed
59 59
      */
60
-    public function resolve($class,$bind=array());
60
+    public function resolve($class, $bind = array());
61 61
 
62 62
     /**
63 63
      * @param $class
Please login to merge, or discard this patch.
src/resta/Contracts/ApplicationContracts.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -31,50 +31,50 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * @return mixed
33 33
      */
34
-   public function console();
34
+    public function console();
35 35
 
36 36
     /**
37 37
      * @return mixed
38 38
      */
39
-   public function corePath();
39
+    public function corePath();
40 40
 
41 41
     /**
42 42
      * @return mixed
43 43
      */
44
-   public function detectEnvironmentForApplicationKey();
44
+    public function detectEnvironmentForApplicationKey();
45 45
 
46 46
     /**
47 47
      * @param array $environment
48 48
      * @return mixed
49 49
      */
50
-   public function environment($environment=array());
50
+    public function environment($environment=array());
51 51
 
52 52
     /**
53 53
      * @return mixed
54 54
      */
55
-   public function handle();
55
+    public function handle();
56 56
 
57 57
     /**
58 58
      * @param $abstract
59 59
      * @param $instance
60 60
      * @return mixed
61 61
      */
62
-   public function instance ($abstract,$instance);
62
+    public function instance ($abstract,$instance);
63 63
 
64 64
     /**
65 65
      * @return mixed
66 66
      */
67
-   public function isLocale();
67
+    public function isLocale();
68 68
 
69 69
     /**
70 70
      * @return array
71 71
      */
72
-   public function kernelGroupKeys();
72
+    public function kernelGroupKeys();
73 73
 
74 74
     /**
75 75
      * @return array
76 76
      */
77
-   public function kernelGroupList();
77
+    public function kernelGroupList();
78 78
 
79 79
     /**
80 80
      * @param callable $callback
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
      * @param null $path
118 118
      * @return mixed
119 119
      */
120
-   public function setPaths($name=null,$path=null);
120
+    public function setPaths($name=null,$path=null);
121 121
 
122 122
     /**
123 123
      * @return mixed
124 124
      */
125
-   public function version();
125
+    public function version();
126 126
 
127 127
 }
128 128
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
      * @param array $arguments
16 16
      * @return mixed
17 17
      */
18
-    public function command($command,$arguments=array());
18
+    public function command($command, $arguments = array());
19 19
 
20 20
     /**
21 21
      * @return array
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      * @param null $config
27 27
      * @return mixed
28 28
      */
29
-    public function config($config=null);
29
+    public function config($config = null);
30 30
 
31 31
     /**
32 32
      * @return mixed
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * @param array $environment
48 48
      * @return mixed
49 49
      */
50
-   public function environment($environment=array());
50
+   public function environment($environment = array());
51 51
 
52 52
     /**
53 53
      * @return mixed
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      * @param $instance
60 60
      * @return mixed
61 61
      */
62
-   public function instance ($abstract,$instance);
62
+   public function instance($abstract, $instance);
63 63
 
64 64
     /**
65 65
      * @return mixed
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      * @param array $loaders
87 87
      * @return mixed
88 88
      */
89
-    public function loadIfNotExistBoot($loaders=array());
89
+    public function loadIfNotExistBoot($loaders = array());
90 90
 
91 91
     /**
92 92
      * @param $maker
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
      * @param null $concrete
101 101
      * @return mixed
102 102
      */
103
-    public function register($key,$object,$concrete=null);
103
+    public function register($key, $object, $concrete = null);
104 104
 
105 105
     /**
106 106
      * @return mixed
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * @param null $path
118 118
      * @return mixed
119 119
      */
120
-   public function setPaths($name=null,$path=null);
120
+   public function setPaths($name = null, $path = null);
121 121
 
122 122
     /**
123 123
      * @return mixed
Please login to merge, or discard this patch.
src/resta/Contracts/StaticNamespaceContracts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param array $bind
25 25
      * @return mixed
26 26
      */
27
-    public function controller($endpoint=null,$bind=array());
27
+    public function controller($endpoint = null, $bind = array());
28 28
 
29 29
     /**
30 30
      * @return mixed
Please login to merge, or discard this patch.
src/resta/Contracts/StaticPathContracts.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
      * @param null $app
9 9
      * @return mixed
10 10
      */
11
-    public function app($app=null);
11
+    public function app($app = null);
12 12
 
13 13
     /**
14 14
      * @return mixed
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
      * @param bool $bool
56 56
      * @return mixed
57 57
      */
58
-    public function controller($controller=null,$bool=true);
58
+    public function controller($controller = null, $bool = true);
59 59
 
60 60
     /**
61 61
      * @return mixed
@@ -146,5 +146,5 @@  discard block
 block discarded – undo
146 146
      * @param null $app
147 147
      * @return mixed
148 148
      */
149
-    public function version($app=null);
149
+    public function version($app = null);
150 150
 }
151 151
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Contracts/EventDispatcherContracts.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
      * @param $concrete
11 11
      * @return mixed
12 12
      */
13
-    public function addListener($eventName,$abstract,$concrete);
13
+    public function addListener($eventName, $abstract, $concrete);
14 14
 
15 15
     /**
16 16
      * @param array $subscriber
17 17
      * @return mixed
18 18
      */
19
-    public function addSubscriber($subscriber=array());
19
+    public function addSubscriber($subscriber = array());
20 20
 }
21 21
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Contracts/KernelContracts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,6 +10,6 @@
 block discarded – undo
10 10
      * @param bool $onion
11 11
      * @return mixed
12 12
      */
13
-    public function callBootstrapperProcess($group,$booting,$onion=true);
13
+    public function callBootstrapperProcess($group, $booting, $onion = true);
14 14
 
15 15
 }
16 16
\ No newline at end of file
Please login to merge, or discard this patch.
src/resta/Contracts/ConfigProviderContracts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
      * @param null $path
9 9
      * @return mixed
10 10
      */
11
-    public function setConfig($path=null);
11
+    public function setConfig($path = null);
12 12
 
13 13
 }
14 14
\ No newline at end of file
Please login to merge, or discard this patch.