Passed
Push — master ( a37bd1...fa975d )
by Radosław
02:34
created
tests/FieldTest.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Radowoj\Yaah;
4 4
 
5
-use PHPUnit\Framework\TestCase;
5
+use PHPUnit\Framework\TestCase;
6 6
 use Radowoj\Yaah\Field;
7 7
 
8 8
 class FieldTest extends TestCase
Please login to merge, or discard this patch.
src/Auction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
     /**
23 23
      * Sets photos for auction
24
-     * @param array $photos array of photo file paths
24
+     * @param string[] $photos array of photo file paths
25 25
      */
26 26
     public function setPhotos(array $photos)
27 27
     {
Please login to merge, or discard this patch.
tests/HelperTest.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Radowoj\Yaah;
4 4
 
5
-use PHPUnit\Framework\TestCase;
6
-use Radowoj\Yaah\Field;
5
+use PHPUnit\Framework\TestCase;
7 6
 use SoapClient;
8 7
 
9 8
 class HelperTest extends TestCase
Please login to merge, or discard this patch.
tests/ClientTest.php 1 patch
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,11 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace Radowoj\Yaah;
4 4
 
5
-use PHPUnit\Framework\TestCase;
6
-use Radowoj\Yaah\Config;
7
-use Radowoj\Yaah\Client;
8
-
9
-use SoapClient;
5
+use PHPUnit\Framework\TestCase;
6
+use Radowoj\Yaah\Config;
7
+use Radowoj\Yaah\Client;
8
+use SoapClient;
10 9
 use SoapFault;
11 10
 
12 11
 class ClientTest extends TestCase
Please login to merge, or discard this patch.
src/HelperFactory/HelperFactory.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -11,6 +11,9 @@
 block discarded – undo
11 11
 {
12 12
     protected $config = null;
13 13
 
14
+    /**
15
+     * @return \SoapClient
16
+     */
14 17
     abstract protected function getSoapClient();
15 18
 
16 19
     public function create(array $configArray)
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -2,10 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace Radowoj\Yaah\HelperFactory;
4 4
 
5
-use Radowoj\Yaah\Config;
6
-use Radowoj\Yaah\Client;
5
+use Radowoj\Yaah\Config;
6
+use Radowoj\Yaah\Client;
7 7
 use Radowoj\Yaah\Helper;
8
-use Radowoj\Yaah\Exception;
9 8
 
10 9
 abstract class HelperFactory
11 10
 {
Please login to merge, or discard this patch.
src/Journal/Deal.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Radowoj\Yaah\Journal;
4 4
 
5
-use stdClass;
5
+use stdClass;
6 6
 use InvalidArgumentException;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.