@@ -8,89 +8,89 @@ |
||
8 | 8 | * @param null|string $msg |
9 | 9 | * @return mixed |
10 | 10 | */ |
11 | - public function accessDeniedHttpException($msg=null); |
|
11 | + public function accessDeniedHttpException($msg = null); |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * @param null|string $msg |
15 | 15 | * @return mixed |
16 | 16 | */ |
17 | - public function invalidArgument($msg=null); |
|
17 | + public function invalidArgument($msg = null); |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @param null|string $msg |
21 | 21 | * @return mixed |
22 | 22 | */ |
23 | - public function badFunctionCall($msg=null); |
|
23 | + public function badFunctionCall($msg = null); |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param null|string $msg |
27 | 27 | * @return mixed |
28 | 28 | */ |
29 | - public function badMethodCall($msg=null); |
|
29 | + public function badMethodCall($msg = null); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * @param null|string $msg |
33 | 33 | * @return mixed |
34 | 34 | */ |
35 | - public function domain($msg=null); |
|
35 | + public function domain($msg = null); |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @param null|string $msg |
39 | 39 | * @return mixed |
40 | 40 | */ |
41 | - public function length($msg=null); |
|
41 | + public function length($msg = null); |
|
42 | 42 | |
43 | 43 | /** |
44 | 44 | * @param null|string $msg |
45 | 45 | * @return mixed |
46 | 46 | */ |
47 | - public function logic($msg=null); |
|
47 | + public function logic($msg = null); |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * @param null|string $msg |
51 | 51 | * @return mixed |
52 | 52 | */ |
53 | - public function notFoundException($msg=null); |
|
53 | + public function notFoundException($msg = null); |
|
54 | 54 | |
55 | 55 | /** |
56 | 56 | * @param null|string $msg |
57 | 57 | * @return mixed |
58 | 58 | */ |
59 | - public function fileNotFoundException($msg=null); |
|
59 | + public function fileNotFoundException($msg = null); |
|
60 | 60 | |
61 | 61 | /** |
62 | 62 | * @param null|string $msg |
63 | 63 | * @return mixed |
64 | 64 | */ |
65 | - public function outOfRange($msg=null); |
|
65 | + public function outOfRange($msg = null); |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * @param null|string $msg |
69 | 69 | * @return mixed |
70 | 70 | */ |
71 | - public function overflow($msg=null); |
|
71 | + public function overflow($msg = null); |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * @param null|string $msg |
75 | 75 | * @return mixed |
76 | 76 | */ |
77 | - public function range($msg=null); |
|
77 | + public function range($msg = null); |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * @param null|string $msg |
81 | 81 | * @return mixed |
82 | 82 | */ |
83 | - public function runtime($msg=null); |
|
83 | + public function runtime($msg = null); |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * @param null|string $msg |
87 | 87 | * @return mixed |
88 | 88 | */ |
89 | - public function underflow($msg=null); |
|
89 | + public function underflow($msg = null); |
|
90 | 90 | |
91 | 91 | /** |
92 | 92 | * @param null|string $msg |
93 | 93 | * @return mixed |
94 | 94 | */ |
95 | - public function unexpectedValue($msg=null); |
|
95 | + public function unexpectedValue($msg = null); |
|
96 | 96 | } |
97 | 97 | \ No newline at end of file |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | * @return null |
30 | 30 | * |
31 | 31 | */ |
32 | - public function accessDeniedHttpException($msg=null) |
|
32 | + public function accessDeniedHttpException($msg = null) |
|
33 | 33 | { |
34 | 34 | return $this->accessDeniedHttp($msg); |
35 | 35 | } |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | * |
40 | 40 | * @param null|string $msg |
41 | 41 | */ |
42 | - public function invalidArgument($msg=null) |
|
42 | + public function invalidArgument($msg = null) |
|
43 | 43 | { |
44 | 44 | throw new InvalidArgumentException($msg); |
45 | 45 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | * |
50 | 50 | * @param null|string $msg |
51 | 51 | */ |
52 | - public function badFunctionCall($msg=null) |
|
52 | + public function badFunctionCall($msg = null) |
|
53 | 53 | { |
54 | 54 | throw new BadFunctionCallException($msg); |
55 | 55 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | * |
60 | 60 | * @param null|string $msg |
61 | 61 | */ |
62 | - public function badMethodCall($msg=null) |
|
62 | + public function badMethodCall($msg = null) |
|
63 | 63 | { |
64 | 64 | throw new BadMethodCallException($msg); |
65 | 65 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * |
70 | 70 | * @param null|string $msg |
71 | 71 | */ |
72 | - public function domain($msg=null) |
|
72 | + public function domain($msg = null) |
|
73 | 73 | { |
74 | 74 | throw new DomainException($msg); |
75 | 75 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | * |
80 | 80 | * @param null|string $msg |
81 | 81 | */ |
82 | - public function length($msg=null) |
|
82 | + public function length($msg = null) |
|
83 | 83 | { |
84 | 84 | throw new LengthException($msg); |
85 | 85 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | * |
90 | 90 | * @param null|string $msg |
91 | 91 | */ |
92 | - public function logic($msg=null) |
|
92 | + public function logic($msg = null) |
|
93 | 93 | { |
94 | 94 | throw new LogicException($msg); |
95 | 95 | } |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | * @return null |
102 | 102 | * |
103 | 103 | */ |
104 | - public function notFoundException($msg=null) |
|
104 | + public function notFoundException($msg = null) |
|
105 | 105 | { |
106 | 106 | return $this->notFound($msg); |
107 | 107 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | * @return mixed|void |
114 | 114 | * |
115 | 115 | */ |
116 | - public function fileNotFoundException($msg=null) |
|
116 | + public function fileNotFoundException($msg = null) |
|
117 | 117 | { |
118 | 118 | return $this->fileNotFound($msg); |
119 | 119 | } |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * |
124 | 124 | * @param null|string $msg |
125 | 125 | */ |
126 | - public function outOfRange($msg=null) |
|
126 | + public function outOfRange($msg = null) |
|
127 | 127 | { |
128 | 128 | throw new OutOfRangeException($msg); |
129 | 129 | } |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | * |
134 | 134 | * @param null|string $msg |
135 | 135 | */ |
136 | - public function overflow($msg=null) |
|
136 | + public function overflow($msg = null) |
|
137 | 137 | { |
138 | 138 | throw new OverflowException($msg); |
139 | 139 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * |
144 | 144 | * @param null|string $msg |
145 | 145 | */ |
146 | - public function range($msg=null) |
|
146 | + public function range($msg = null) |
|
147 | 147 | { |
148 | 148 | throw new RangeException($msg); |
149 | 149 | } |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | * |
154 | 154 | * @param null|string $msg |
155 | 155 | */ |
156 | - public function runtime($msg=null) |
|
156 | + public function runtime($msg = null) |
|
157 | 157 | { |
158 | 158 | throw new RuntimeException($msg); |
159 | 159 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | * |
164 | 164 | * @param null|string $msg |
165 | 165 | */ |
166 | - public function underflow($msg=null) |
|
166 | + public function underflow($msg = null) |
|
167 | 167 | { |
168 | 168 | throw new UnderflowException($msg); |
169 | 169 | } |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | * |
174 | 174 | * @param null|string $msg |
175 | 175 | */ |
176 | - public function unexpectedValue($msg=null) |
|
176 | + public function unexpectedValue($msg = null) |
|
177 | 177 | { |
178 | 178 | throw new UnexpectedValueException($msg); |
179 | 179 | } |