Completed
Pull Request — master (#9)
by Valentin
02:01
created
src/Model/GcmMessage.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
      */
252 252
     public function getContentAvailable()
253 253
     {
254
-        return (bool)$this->content_available;
254
+        return (bool) $this->content_available;
255 255
     }
256 256
 
257 257
     /**
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      */
276 276
     public function getDelayWhileIdle()
277 277
     {
278
-        return (bool)$this->delay_while_idle;
278
+        return (bool) $this->delay_while_idle;
279 279
     }
280 280
 
281 281
     /**
@@ -299,7 +299,7 @@  discard block
 block discarded – undo
299 299
      */
300 300
     public function getTimeToLive()
301 301
     {
302
-        return (int)$this->time_to_live;
302
+        return (int) $this->time_to_live;
303 303
     }
304 304
 
305 305
     /**
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
      */
348 348
     public function getDryRun()
349 349
     {
350
-        return (bool)$this->dry_run;
350
+        return (bool) $this->dry_run;
351 351
     }
352 352
 
353 353
     /**
Please login to merge, or discard this patch.
src/Client/AppleClient.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -102,11 +102,11 @@
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-    * Get the stream context
106
-    * Create an ssl connexion from config parameters.
107
-    *
108
-    * @return ressource
109
-    */
105
+     * Get the stream context
106
+     * Create an ssl connexion from config parameters.
107
+     *
108
+     * @return ressource
109
+     */
110 110
     protected function getStreamContext()
111 111
     {
112 112
         return stream_context_create(array(
Please login to merge, or discard this patch.