Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <?php
-
- namespace common\logic\Config\TaxRate;
-
- use common\logic\BaseService;
- use common\logic\BuilderInterface;
-
- class TaxRateBuilder extends BaseService implements BuilderInterface
- {
- public function instanciate(): TaxRate
- {
- $taxRate = new TaxRate();
-
- return $taxRate;
- }
- }
|