| 123456789101112131415161718192021222324 |
- <?php
- /**
- * Link : http://www.phpcorner.net
- * User : qingbing<780042175@qq.com>
- * Date : 2018-12-07
- * Version : 1.0
- */
- namespace TestClass;
- use Abstracts\Factory;
- class FactoryDemo extends Factory
- {
- protected function init()
- {
- var_dump("factory construct");
- }
- public function test()
- {
- var_dump(__CLASS__ . " - " . __FUNCTION__);
- }
- }
|