1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- declare(strict_types=1);
- namespace Geocoder\Model;
- final class AdminLevel
- {
-
- private $level;
-
- private $name;
-
- private $code;
-
- public function __construct(int $level, string $name, string $code = null)
- {
- $this->level = $level;
- $this->name = $name;
- $this->code = $code;
- }
-
- public function getLevel(): int
- {
- return $this->level;
- }
-
- public function getName(): string
- {
- return $this->name;
- }
-
- public function getCode()
- {
- return $this->code;
- }
-
- public function __toString(): string
- {
- return $this->getName();
- }
- }
|