Fixed style

This commit is contained in:
Christophe Vidal
2016-06-14 08:33:07 +07:00
parent 2888ac456a
commit c8e0c74f46
8 changed files with 12 additions and 20 deletions

View File

@@ -11,8 +11,6 @@ class BookList implements \Countable
if (isset($this->books[$bookNumberToGet])) {
return $this->books[$bookNumberToGet];
}
return;
}
public function addBook(Book $book)

View File

@@ -2,9 +2,6 @@
namespace DesignPatterns\Behavioral\TemplateMethod;
/**
*
*/
abstract class Journey
{
/**