# packeta/1.6.1/deps/nette/php-generator/src/PhpGenerator/Property.php

Packeta, version 1.6.1. 89 lines.

- Page: https://pluginprobe.com/plugins/packeta/1.6.1/code/deps/nette/php-generator/src/PhpGenerator/Property.php
- Raw: https://pluginprobe.com/plugins/packeta/1.6.1/raw/deps/nette/php-generator/src/PhpGenerator/Property.php
- Modified: 2023-08-30T08:36:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/1.6.1/code/deps/nette/php-generator/src/PhpGenerator/Property.php#L10-L20`.

```php
<?php

/**
 * This file is part of the Nette Framework (https://nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */
declare (strict_types=1);
namespace Packetery\Nette\PhpGenerator;

use Packetery\Nette;
/**
 * Class property description.
 *
 * @property mixed $value
 */
final class Property
{
    use \Packetery\Nette\SmartObject;
    use Traits\NameAware;
    use Traits\VisibilityAware;
    use Traits\CommentAware;
    use Traits\AttributeAware;
    /** @var mixed */
    private $value;
    /** @var bool */
    private $static = \false;
    /** @var string|null */
    private $type;
    /** @var bool */
    private $nullable = \false;
    /** @var bool */
    private $initialized = \false;
    /** @return static */
    public function setValue($val) : self
    {
        $this->value = $val;
        $this->initialized = \true;
        return $this;
    }
    public function &getValue()
    {
        return $this->value;
    }
    /** @return static */
    public function setStatic(bool $state = \true) : self
    {
        $this->static = $state;
        return $this;
    }
    public function isStatic() : bool
    {
        return $this->static;
    }
    /** @return static */
    public function setType(?string $type) : self
    {
        if ($type && $type[0] === '?') {
            $type = \substr($type, 1);
            $this->nullable = \true;
        }
        $this->type = $type;
        return $this;
    }
    public function getType() : ?string
    {
        return $this->type;
    }
    /** @return static */
    public function setNullable(bool $state = \true) : self
    {
        $this->nullable = $state;
        return $this;
    }
    public function isNullable() : bool
    {
        return $this->nullable;
    }
    /** @return static */
    public function setInitialized(bool $state = \true) : self
    {
        $this->initialized = $state;
        return $this;
    }
    public function isInitialized() : bool
    {
        return $this->initialized || $this->value !== null;
    }
}

```
