flight-core/tests/classes/Factory.php

15 lines
178 B

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