Completed
Push — master ( 9bbce9...3eca4a )
by Julián
04:40 queued 02:16
created
src/OptionsTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
      * Get option.
43 43
      *
44 44
      * @param string $option
45
-     * @param mixed  $default
45
+     * @param integer  $default
46 46
      *
47 47
      * @return mixed
48 48
      */
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      *
57 57
      * @param array $options
58 58
      *
59
-     * @return \Jgut\Tify\Model\BaseOptionedModel
59
+     * @return OptionsTrait
60 60
      */
61 61
     public function setOptions($options)
62 62
     {
Please login to merge, or discard this patch.
src/ParametersTrait.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
      * Get parameter.
33 33
      *
34 34
      * @param string $parameter
35
-     * @param mixed  $default
35
+     * @param integer  $default
36 36
      *
37 37
      * @return mixed
38 38
      */
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      *
57 57
      * @param array $parameters
58 58
      *
59
-     * @return \Jgut\Tify\Model\BaseParameteredModel
59
+     * @return ParametersTrait
60 60
      */
61 61
     public function setParameters($parameters)
62 62
     {
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
src/Service/Apns.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
     /**
163 163
      * Get opened ServiceClient
164 164
      *
165
-     * @return \ZendService\Apple\Apns\Client\AbstractClient
165
+     * @return \ZendService\Apple\Apns\Message
166 166
      */
167 167
     protected function getPushService()
168 168
     {
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
src/Service/Message/Gcm.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,6 @@
 block discarded – undo
39 39
     /**
40 40
      * Set notification payload data.
41 41
      *
42
-     * @param array $data
43 42
      */
44 43
     public function setNotificationPayload(array $payload)
45 44
     {
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
src/Exception/ServiceException.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
src/Service/Gcm.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
src/Service/SendInterface.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.
src/Service/Client/ApnsBuilder.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Push notification services abstraction (http://github.com/juliangut/tify)
4
- *
5
- * @link https://github.com/juliangut/tify for the canonical source repository
6
- *
7
- * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
- */
3
+     * Push notification services abstraction (http://github.com/juliangut/tify)
4
+     *
5
+     * @link https://github.com/juliangut/tify for the canonical source repository
6
+     *
7
+     * @license https://github.com/juliangut/tify/blob/master/LICENSE
8
+     */
9 9
 
10 10
 session_start();
11 11
 
Please login to merge, or discard this patch.