Skip to content

Commit dca282f

Browse files
committed
fabbot
1 parent eb4a389 commit dca282f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Flex.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,10 @@ class_exists(__NAMESPACE__.str_replace('/', '\\', substr($file, \strlen(__DIR__)
129129

130130
// if Flex is being upgraded, the original operations from the original Flex
131131
// instance are stored in the static property, so we can reuse them now.
132-
if (property_exists(Flex::class, 'storedOperations')) {
133-
if (null !== Flex::$storedOperations) {
134-
$this->operations = Flex::$storedOperations;
135-
Flex::$storedOperations = null;
132+
if (property_exists(self::class, 'storedOperations')) {
133+
if (null !== self::$storedOperations) {
134+
$this->operations = self::$storedOperations;
135+
self::$storedOperations = null;
136136
}
137137
}
138138

0 commit comments

Comments
 (0)