mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 13:59:08 +02:00
9 lines
126 B
PHP
9 lines
126 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\AbstractFactory;
|
|
|
|
interface Product
|
|
{
|
|
public function calculatePrice(): int;
|
|
}
|