Passed
Push — master ( a3ef3c...f92079 )
by Php Easy Api
06:53
created
src/resta/Exception/ExceptionManager.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @param null|string $msg
30 30
      */
31
-    public function invalidArgument($msg=null)
31
+    public function invalidArgument($msg = null)
32 32
     {
33 33
         throw new InvalidArgumentException($msg);
34 34
     }
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      *
39 39
      * @param null|string $msg
40 40
      */
41
-    public function badFunctionCall($msg=null)
41
+    public function badFunctionCall($msg = null)
42 42
     {
43 43
         throw new BadFunctionCallException($msg);
44 44
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @param null|string $msg
50 50
      */
51
-    public function badMethodCall($msg=null)
51
+    public function badMethodCall($msg = null)
52 52
     {
53 53
         throw new BadMethodCallException($msg);
54 54
     }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      *
59 59
      * @param null|string $msg
60 60
      */
61
-    public function domain($msg=null)
61
+    public function domain($msg = null)
62 62
     {
63 63
         throw new DomainException($msg);
64 64
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
      *
69 69
      * @param null|string $msg
70 70
      */
71
-    public function length($msg=null)
71
+    public function length($msg = null)
72 72
     {
73 73
         throw new LengthException($msg);
74 74
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
      *
79 79
      * @param null|string $msg
80 80
      */
81
-    public function logic($msg=null)
81
+    public function logic($msg = null)
82 82
     {
83 83
         throw new LogicException($msg);
84 84
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      *
89 89
      * @param null|string $msg
90 90
      */
91
-    public function outOfRange($msg=null)
91
+    public function outOfRange($msg = null)
92 92
     {
93 93
         throw new OutOfRangeException($msg);
94 94
     }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      *
99 99
      * @param null|string $msg
100 100
      */
101
-    public function overflow($msg=null)
101
+    public function overflow($msg = null)
102 102
     {
103 103
         throw new OverflowException($msg);
104 104
     }
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
      *
109 109
      * @param null|string $msg
110 110
      */
111
-    public function range($msg=null)
111
+    public function range($msg = null)
112 112
     {
113 113
         throw new RangeException($msg);
114 114
     }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      *
119 119
      * @param null|string $msg
120 120
      */
121
-    public function runtime($msg=null)
121
+    public function runtime($msg = null)
122 122
     {
123 123
         throw new RuntimeException($msg);
124 124
     }
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
      *
129 129
      * @param null|string $msg
130 130
      */
131
-    public function underflow($msg=null)
131
+    public function underflow($msg = null)
132 132
     {
133 133
         throw new UnderflowException($msg);
134 134
     }
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
      *
139 139
      * @param null|string $msg
140 140
      */
141
-    public function unexpectedValue($msg=null)
141
+    public function unexpectedValue($msg = null)
142 142
     {
143 143
         throw new UnexpectedValueException($msg);
144 144
     }
Please login to merge, or discard this patch.