diff --git a/Behavioral/TemplateMethod/Journey.php b/Behavioral/TemplateMethod/Journey.php index c891072..fbf79d4 100644 --- a/Behavioral/TemplateMethod/Journey.php +++ b/Behavioral/TemplateMethod/Journey.php @@ -37,7 +37,7 @@ abstract class Journey } /** - * this method will be unknown by subclasses (better) + * This method will be unknown by subclasses (better) */ private function buyAFlight() { diff --git a/Creational/Pool/Tests/PoolTest.php b/Creational/Pool/Tests/PoolTest.php index 91fde01..00e0975 100644 --- a/Creational/Pool/Tests/PoolTest.php +++ b/Creational/Pool/Tests/PoolTest.php @@ -6,7 +6,6 @@ use DesignPatterns\Creational\Pool\Pool; class TestWorker { - public $id = 1; }