mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-31 11:10:08 +02:00
9 lines
118 B
PHP
9 lines
118 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\AbstractFactory;
|
|
|
|
class JsonText extends Text
|
|
{
|
|
// do something here
|
|
}
|