mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 01:22:23 -04:00
43 lines
573 B
PHP
43 lines
573 B
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 Nette\PhpGenerator;
|
|
|
|
use Nette;
|
|
|
|
|
|
/**
|
|
* Class constant.
|
|
*/
|
|
final class Constant
|
|
{
|
|
use Nette\SmartObject;
|
|
use Traits\NameAware;
|
|
use Traits\VisibilityAware;
|
|
use Traits\CommentAware;
|
|
|
|
/** @var mixed */
|
|
private $value;
|
|
|
|
|
|
/**
|
|
* @return static
|
|
*/
|
|
public function setValue($val): self
|
|
{
|
|
$this->value = $val;
|
|
return $this;
|
|
}
|
|
|
|
|
|
public function getValue()
|
|
{
|
|
return $this->value;
|
|
}
|
|
}
|