mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-27 18:20:22 +02:00
12 lines
215 B
PHP
12 lines
215 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class PingService extends Service
|
|
{
|
|
public function get(): string
|
|
{
|
|
return $this->implementation->format('pong');
|
|
}
|
|
}
|