Completed
Push — master ( f16118...8d4298 )
by Oliver
18:54 queued 08:41
created
Profiler/NotifProfiler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @param $message
42
+     * @param string $message
43 43
      *
44 44
      * @return StopwatchEvent
45 45
      */
Please login to merge, or discard this patch.
Client/AppleClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public function push(Message $message)
52 52
     {
53
-        $profilingEvent = $this->notifProfiler->startProfiling('APPLE: ' . $message->getContent());
53
+        $profilingEvent = $this->notifProfiler->startProfiling('APPLE: '.$message->getContent());
54 54
 
55 55
         try {
56 56
 
Please login to merge, or discard this patch.
Client/GcmClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
      */
51 51
     public function push(Message $message)
52 52
     {
53
-        $profilingEvent = $this->notifProfiler->startProfiling('GCM: ' . $message->getContent());
53
+        $profilingEvent = $this->notifProfiler->startProfiling('GCM: '.$message->getContent());
54 54
 
55 55
         try {
56 56
             parent::push($message);
Please login to merge, or discard this patch.
DependencyInjection/Configuration.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * Get apple clients node.
40 40
      *
41
-     * @return TreeBuilder
41
+     * @return \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition
42 42
      */
43 43
     protected function addAppleClientsNode()
44 44
     {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     /**
74 74
      * Get Google Cloud Messaging clients node.
75 75
      *
76
-     * @return TreeBuilder
76
+     * @return \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition
77 77
      */
78 78
     protected function addGcmClientsNode()
79 79
     {
Please login to merge, or discard this patch.