1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-23 03:20:33 +00:00
Arsse/lib/Factory.php

15 lines
265 B
PHP
Raw Permalink Normal View History

<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
2021-04-14 11:17:01 -04:00
namespace JKingWeb\Arsse;
class Factory {
public function get(string $class) {
return new $class;
}
2021-02-08 19:14:11 -05:00
}