flight-core/tests/classes/Factory.php

11 lines
169 B

<?php
class Factory {
// Cannot be instantiated
private function __construct() {
}
public static function create() {
return new self();
}
}