Completed
Push — master ( 980324...b8d089 )
by Filippo
03:39
created
src/SMSFactorFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     /**
33 33
      * Create a new filesystem factory instance.
34 34
      *
35
-     * @param \IlGala\SMSFactor\Adapters\ConnectionFactory $adapter
35
+     * @param AdapterFactory $adapter
36 36
      *
37 37
      * @return void
38 38
      */
Please login to merge, or discard this patch.
tests/SMSFactorFactoryTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -52,6 +52,9 @@
 block discarded – undo
52 52
         return new SMSFactorFactory($adapter);
53 53
     }
54 54
 
55
+    /**
56
+     * @param Mockery\MockInterface $manager
57
+     */
55 58
     protected function getMockedFactory($config, $manager)
56 59
     {
57 60
         $adapter = Mockery::mock(ConnectionFactory::class);
Please login to merge, or discard this patch.
src/SMSFactor.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param AdapterInterface $adapter
45
+     * @param string $content_type
45 46
      */
46 47
     public function __construct(AdapterInterface $adapter, $content_type, $endpoint = null)
47 48
     {
@@ -275,7 +276,7 @@  discard block
 block discarded – undo
275 276
     }
276 277
 
277 278
     /**
278
-     * @return mixed
279
+     * @return \SimpleXMLElement
279 280
      */
280 281
     public function deliveryReport($params)
281 282
     {
Please login to merge, or discard this patch.