Completed
Branch 0.3.x (c0d89a)
by Marko
02:53
created
src/Core/Assets.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
      * <a-scene><a-assets><audio>
53 53
      *
54 54
      * @param string $id            
55
-     * @return AssetAudioInterface
55
+     * @return \AframeVR\Interfaces\Core\Assets\AssetAudioInterface
56 56
      */
57 57
     public function audio(string $id = 'untitled'): AssetAudioInterface
58 58
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * <a-scene><a-assets><img>
64 64
      *
65 65
      * @param string $id            
66
-     * @return AssetImageInterface
66
+     * @return \AframeVR\Interfaces\Core\Assets\AssetImageInterface
67 67
      */
68 68
     public function img(string $id = 'untitled'): AssetImageInterface
69 69
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * <a-scene><a-assets><a-asset-item>
75 75
      *
76 76
      * @param string $id            
77
-     * @return ItemInterface
77
+     * @return \AframeVR\Interfaces\Core\Assets\AssetItemInterface
78 78
      */
79 79
     public function item(string $id = 'untitled'): AssetItemInterface
80 80
     {
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      * <a-scene><a-assets><video>
86 86
      *
87 87
      * @param string $id            
88
-     * @return AssetVideoInterface
88
+     * @return \AframeVR\Interfaces\Core\Assets\AssetVideoInterface
89 89
      */
90 90
     public function video(string $id = 'untitled'): AssetVideoInterface
91 91
     {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      * mixin directly on element using this mixin.
100 100
      *
101 101
      * @param string $id            
102
-     * @return MixinInterface
102
+     * @return \AframeVR\Interfaces\Core\Assets\MixinInterface
103 103
      */
104 104
     public function mixin(string $id = 'untitled'): MixinInterface
105 105
     {
Please login to merge, or discard this patch.
src/Core/Helpers/MockComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      * @param string $method
39 39
      * @param array $args
40 40
      * @throws InvalidComponentMethodException
41
-     * @return object
41
+     * @return MockComponent
42 42
      */
43 43
     public function __call(string $method, $args)
44 44
     {
Please login to merge, or discard this patch.