Completed
Push — master ( 613542...020c5c )
by Julián
03:39
created
src/OptionsTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * Get option.
59 59
      *
60 60
      * @param string $option
61
-     * @param mixed  $default
61
+     * @param integer  $default
62 62
      *
63 63
      * @return mixed
64 64
      */
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
      * Set option.
96 96
      *
97 97
      * @param string $option
98
-     * @param mixed  $value
98
+     * @param string  $value
99 99
      *
100 100
      * @return $this
101 101
      */
Please login to merge, or discard this patch.
tests/Tify/Service/Client/ApnsBuilderTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function testPushClient()
29 29
     {
30
-        $client = ApnsClientBuilder::buildPush(dirname(dirname(dirname(__DIR__))) . '/files/apns_certificate.pem');
30
+        $client = ApnsClientBuilder::buildPush(dirname(dirname(dirname(__DIR__))).'/files/apns_certificate.pem');
31 31
 
32 32
         $this->assertInstanceOf(Message::class, $client);
33 33
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
      */
42 42
     public function testPushFeedback()
43 43
     {
44
-        $client = ApnsClientBuilder::buildFeedback(dirname(dirname(dirname(__DIR__))) . '/files/apns_certificate.pem');
44
+        $client = ApnsClientBuilder::buildFeedback(dirname(dirname(dirname(__DIR__))).'/files/apns_certificate.pem');
45 45
 
46 46
         $this->assertInstanceOf(Feedback::class, $client);
47 47
     }
Please login to merge, or discard this patch.