Skip to content

Commit 62c5654

Browse files
Merge branch '3.2' into 3.3
* 3.2: Fix optional cache warmers are always instantiated whereas they should be lazy-loaded add some \ on PHP_VERSION_ID for 2.8 [PropertyInfo][DoctrineBridge] The bigint Doctrine's type must be converted to string
2 parents 0ae6541 + 7e276d2 commit 62c5654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Config/AutowireServiceResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function serialize()
6565

6666
public function unserialize($serialized)
6767
{
68-
if (PHP_VERSION_ID >= 70000) {
68+
if (\PHP_VERSION_ID >= 70000) {
6969
list($this->class, $this->filePath, $this->autowiringMetadata) = unserialize($serialized, array('allowed_classes' => false));
7070
} else {
7171
list($this->class, $this->filePath, $this->autowiringMetadata) = unserialize($serialized);

0 commit comments

Comments
 (0)