Failed Conditions
Pull Request — master (#25)
by Chad
02:50
created
src/Adapter/CurlAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      *
19 19
      * @param RequestInterface $request The request to send.
20 20
      *
21
-     * @return ResponseInterface
21
+     * @return Response
22 22
      *
23 23
      * @throws \Exception Throws on error.
24 24
      */
Please login to merge, or discard this patch.
tests/Assets/CharacterAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      *
24 24
      * @param RequestInterface $request The request.
25 25
      *
26
-     * @return ResponseInterface
26
+     * @return Response
27 27
      */
28 28
     public function send(RequestInterface $request)
29 29
     {
Please login to merge, or discard this patch.
tests/Assets/CollectionAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      *
17 17
      * @param RequestInterface $request The request.
18 18
      *
19
-     * @return ResponseInterface
19
+     * @return Response
20 20
      */
21 21
     public function send(RequestInterface $request)
22 22
     {
Please login to merge, or discard this patch.
tests/Assets/ComicAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param RequestInterface $request The request.
26 26
      *
27
-     * @return ResponseInterface
27
+     * @return Response
28 28
      */
29 29
     public function send(RequestInterface $request)
30 30
     {
Please login to merge, or discard this patch.
tests/Assets/EmptyAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      *
16 16
      * @param RequestInterface $request The request to send.
17 17
      *
18
-     * @return ResponseInterface
18
+     * @return Response
19 19
      */
20 20
     public function send(RequestInterface $request)
21 21
     {
Please login to merge, or discard this patch.
tests/Assets/ErrorAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @param RequestInterface $request The request to send.
24 24
      *
25
-     * @return ResponseInterface
25
+     * @return Response
26 26
      */
27 27
     public function send(RequestInterface $request)
28 28
     {
Please login to merge, or discard this patch.
tests/Assets/FakeAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      *
23 23
      * @param RequestInterface $request The request to send.
24 24
      *
25
-     * @return ResponseInterface
25
+     * @return Response
26 26
      */
27 27
     public function send(RequestInterface $request)
28 28
     {
Please login to merge, or discard this patch.
tests/Assets/SingleAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
      *
17 17
      * @param RequestInterface $request The request to send.
18 18
      *
19
-     * @return ResponseInterface
19
+     * @return Response
20 20
      */
21 21
     public function send(RequestInterface $request)
22 22
     {
Please login to merge, or discard this patch.
tests/Entities/AbstractEntityTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Chadicus\Marvel\Api\Entities;
3 3
 
4
-use DominionEnterprises\Util;
5
-
6 4
 /**
7 5
  * Unit tests for the AbstractEntity class.
8 6
  *
Please login to merge, or discard this patch.