Completed
Push — master ( 0aef32...b40f7e )
by Marko
02:52
created
src/Core/Assets.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * mixin
48 48
      *
49 49
      * @param string $name            
50
-     * @return MixinInterface
50
+     * @return \AframeVR\Interfaces\Assets\MixinInterface
51 51
      */
52 52
     public function mixin(string $name = 'untitled'): MixinInterface
53 53
     {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      * mixin
59 59
      *
60 60
      * @param string $name
61
-     * @return ItemInterface
61
+     * @return \AframeVR\Interfaces\Assets\ItemInterface
62 62
      */
63 63
     public function item(string $name = 'untitled'): ItemInterface
64 64
     {
Please login to merge, or discard this patch.
src/Core/Scene.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      *
108 108
      * @api
109 109
      *            
110
-     * @return \AframeVR\Interfaces\AssetsInterface
110
+     * @return Assets
111 111
      */
112 112
     public function asset(): Assets
113 113
     {
Please login to merge, or discard this patch.
src/Interfaces/AssetsInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -37,6 +37,7 @@
 block discarded – undo
37 37
      * @param integer|double $x            
38 38
      * @param integer|double $y            
39 39
      * @param integer|double $z            
40
+     * @return void
40 41
      */
41 42
     public function update(float $x = 0, float $y = 0, float $z = 0);
42 43
 }
Please login to merge, or discard this patch.