mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-02 20:19:04 +02:00
9 lines
118 B
PHP
9 lines
118 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\AbstractFactory;
|
|
|
|
class HtmlText extends Text
|
|
{
|
|
// do something here
|
|
}
|