We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6e804 commit bec9b1dCopy full SHA for bec9b1d
src/Traits/AutotrackRevisions.php
@@ -32,7 +32,9 @@ public function revision() : string
32
33
$tokens = [];
34
35
- while ($current = array_pop($stack)) {
+ while ($stack) {
36
+ $current = array_pop($stack);
37
+
38
$reflector = new ReflectionClass($current);
39
40
$properties = $reflector->getProperties();
src/constants.php
@@ -9,7 +9,7 @@
9
*
10
* @var string
11
*/
12
- const VERSION = '1.3.1';
+ const VERSION = '1.3.2';
13
14
/**
15
* A small number used in substitution of 0.
0 commit comments