Completed
Push — master ( 431b60...331673 )
by Marko
10s
created
src/Core/Components/ascene/Fog/FogComponent.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
      *
78 78
      * Minimum distance to start applying fog. Objects closer than this won’t be affected by fog.
79 79
      *
80
-     * @param string $near
80
+     * @param integer $near
81 81
      * @return FogCMPTIF
82 82
      */
83 83
     public function near(int $near = 1): FogCMPTIF
Please login to merge, or discard this patch.
src/Core/Components/Material/MaterialComponent.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,6 @@
 block discarded – undo
140 140
     /**
141 141
      * Do not apply fog to certain entities, we can disable fog for certain materials.
142 142
      *
143
-     * @param string $side
144 143
      * @return MaterialCMPTIF
145 144
      */
146 145
     public function fog(bool $fog = true): MaterialCMPTIF
Please login to merge, or discard this patch.
src/Interfaces/Core/Components/ascene/FogCMPTIF.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
      *
60 60
      * Minimum distance to start applying fog. Objects closer than this won’t be affected by fog.
61 61
      *
62
-     * @param string $near
62
+     * @param integer $near
63 63
      * @return FogCMPTIF
64 64
      */
65 65
     public function near(int $near = 1): FogCMPTIF;
Please login to merge, or discard this patch.
src/Interfaces/Core/Components/MaterialCMPTIF.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,6 @@
 block discarded – undo
96 96
     /**
97 97
      * Do not apply fog to certain entities, we can disable fog for certain materials.
98 98
      *
99
-     * @param string $side
100 99
      * @return MaterialCMPTIF
101 100
      */
102 101
     public function fog(bool $fog = true): MaterialCMPTIF;
Please login to merge, or discard this patch.