Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <?php
-
- namespace common\logic\PointSale\UserPointSale;
-
- use common\logic\BaseService;
- use common\logic\BuilderInterface;
-
- class UserPointSaleBuilder extends BaseService implements BuilderInterface
- {
- public function instanciate(): UserPointSale
- {
- $userPointSale = new UserPointSale();
-
- return $userPointSale;
- }
- }
|