Completed
Branch master (f2b80b)
by Kevin
03:50
created
src/Explorer/Link.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     /**
74 74
      * @param array $variables
75 75
      * @param array $options
76
-     * @return HalResource|ResourceCollection
76
+     * @return ResourceInterface
77 77
      */
78 78
     private function request(array $variables = [], array $options = [])
79 79
     {
Please login to merge, or discard this patch.
src/Explorer/LinkFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      */
43 43
     public static function createCollection(Explorer $explorer, $name, array $data, EmbeddableInterface $parent)
44 44
     {
45
-        $collection =  new LinkCollection($explorer, $name, $parent);
45
+        $collection = new LinkCollection($explorer, $name, $parent);
46 46
         foreach ($data as $itemData) {
47 47
             $collection->addLink(self::createLink($explorer, $name, $itemData, $collection));
48 48
         }
Please login to merge, or discard this patch.