Completed
Branch master (b4d2e0)
by Ventimiglia
02:17
created
src/FirebaseResponce.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     private function validateOperation()
146 146
     {
147
-        if (! is_string($this->getOperation())) {
147
+        if (!is_string($this->getOperation())) {
148 148
             $getOperation = "Operation parameter must be STRING and NOT EMPTY. Received : ";
149 149
             $getOperation .= gettype($this->getOperation()) . " ({$this->getOperation()}).";
150 150
             
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
      */
160 160
     private function validateStatus()
161 161
     {
162
-        if (! is_numeric($this->getStatus())) {
162
+        if (!is_numeric($this->getStatus())) {
163 163
             $getStatus = "Status parameter must be NUMERIC. Received : ";
164 164
             $getStatus .= gettype($this->getStatus()) . " ({$this->getStatus()}).";
165 165
             
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      */
175 175
     private function validateData()
176 176
     {
177
-        if (! is_array($this->getFirebaseData())) {
177
+        if (!is_array($this->getFirebaseData())) {
178 178
             $gettype = "FirebaseData parameter must be ARRAY. Received : " . gettype($this->getFirebaseData()) . ".";
179 179
             throw new \Exception($gettype);
180 180
         }
Please login to merge, or discard this patch.