Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 50... Línea 50...
50
    private bool $isInstantiable;
50
    private bool $isInstantiable;
Línea 51... Línea 51...
51
 
51
 
52
    /**
52
    /**
53
     * @param string $name Entry name
53
     * @param string $name Entry name
54
     */
54
     */
55
    public function __construct(string $name, string $className = null)
55
    public function __construct(string $name, ?string $className = null)
56
    {
56
    {
57
        $this->name = $name;
57
        $this->name = $name;
58
        $this->setClassName($className);
58
        $this->setClassName($className);
Línea 157... Línea 157...
157
            // Set
157
            // Set
158
            $this->addMethodInjection($injection);
158
            $this->addMethodInjection($injection);
159
        }
159
        }
160
    }
160
    }
Línea 161... Línea 161...
161
 
161
 
162
    public function setLazy(bool $lazy = null) : void
162
    public function setLazy(?bool $lazy = null) : void
163
    {
163
    {
164
        $this->lazy = $lazy;
164
        $this->lazy = $lazy;
Línea 165... Línea 165...
165
    }
165
    }