| 1 | <?php |
||
| 21 | class FullyQualifiedName |
||
| 22 | { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string $fully_qualified_name |
||
| 26 | */ |
||
| 27 | private $fully_qualified_name; |
||
| 28 | |||
| 29 | |||
| 30 | /** |
||
| 31 | * FullyQualifiedName constructor. |
||
| 32 | * |
||
| 33 | * @param string $fully_qualified_name |
||
| 34 | * @throws InvalidClassException |
||
| 35 | * @throws InvalidInterfaceException |
||
| 36 | * @throws InvalidDataTypeException |
||
| 37 | */ |
||
| 38 | public function __construct($fully_qualified_name) |
||
| 55 | |||
| 56 | |||
| 57 | /** |
||
| 58 | * @return string |
||
| 59 | */ |
||
| 60 | public function __toString() |
||
| 64 | |||
| 65 | } |
||
| 66 |