Explorar el Código

Fix non-null default value

Jordi Boggiano hace 13 años
padre
commit
152d66bb48
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/Packagist/WebBundle/Entity/Package.php

+ 1 - 1
src/Packagist/WebBundle/Entity/Package.php

@@ -97,7 +97,7 @@ class Package
     /**
      * @ORM\Column(type="boolean")
      */
-    private $autoUpdated;
+    private $autoUpdated = false;
 
     private $entityRepository;
     private $repositoryClass;