Skip to content

Commit 1da5772

Browse files
author
Dominik Liebler
committed
removed superfluous Class comments
1 parent 95ad95c commit 1da5772

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1
-145
lines changed

Behavioral/ChainOfResponsibilities/Responsible/FastStorage.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
use DesignPatterns\Behavioral\ChainOfResponsibilities\Handler;
66
use DesignPatterns\Behavioral\ChainOfResponsibilities\Request;
77

8-
/**
9-
* Class FastStorage.
10-
*/
118
class FastStorage extends Handler
129
{
1310
/**

Behavioral/State/CreateOrder.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\State;
44

5-
/**
6-
* Class CreateOrder.
7-
*/
85
class CreateOrder implements OrderInterface
96
{
107
/**

Behavioral/State/OrderController.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\State;
44

5-
/**
6-
* Class OrderController.
7-
*/
85
class OrderController
96
{
107
/**

Behavioral/State/OrderFactory.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\State;
44

5-
/**
6-
* Class OrderFactory.
7-
*/
85
class OrderFactory
96
{
107
private function __construct()

Behavioral/State/OrderInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\State;
44

5-
/**
6-
* Class OrderInterface.
7-
*/
85
interface OrderInterface
96
{
107
/**

Behavioral/State/ShippingOrder.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\State;
44

5-
/**
6-
* Class ShippingOrder.
7-
*/
85
class ShippingOrder implements OrderInterface
96
{
107
/**

Behavioral/Strategy/ComparatorInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\Strategy;
44

5-
/**
6-
* Class ComparatorInterface.
7-
*/
85
interface ComparatorInterface
96
{
107
/**

Behavioral/Strategy/DateComparator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\Strategy;
44

5-
/**
6-
* Class DateComparator.
7-
*/
85
class DateComparator implements ComparatorInterface
96
{
107
/**

Behavioral/Strategy/IdComparator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\Strategy;
44

5-
/**
6-
* Class IdComparator.
7-
*/
85
class IdComparator implements ComparatorInterface
96
{
107
/**

Behavioral/Strategy/ObjectCollection.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
namespace DesignPatterns\Behavioral\Strategy;
44

5-
/**
6-
* Class ObjectCollection.
7-
*/
85
class ObjectCollection
96
{
107
/**

0 commit comments

Comments
 (0)