You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php/** * Created by PhpStorm. * User: chentao * Date: 2021/7/2 * Time: 10:20 PM */class TehuiTaoCanFactory{ public function create() { $apple = new Apple(); $pork = new Pork(); return new TehuiTaocan($apple, $pork); }}