mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-25 17:21:19 +02:00
9 lines
97 B
PHP
9 lines
97 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\Pool\Tests;
|
|
|
|
class TestWorker
|
|
{
|
|
public $id = 1;
|
|
}
|