mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-26 01:31:20 +02:00
14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Creational\Pool;
|
|
|
|
class StringReverseWorker
|
|
{
|
|
public function run(string $text): string
|
|
{
|
|
return strrev($text);
|
|
}
|
|
}
|