removed superfluous Class comments

This commit is contained in:
Dominik Liebler
2016-09-22 09:18:20 +02:00
parent 95ad95c33e
commit 1da5772226
43 changed files with 1 additions and 145 deletions

View File

@@ -3,16 +3,13 @@
namespace DesignPatterns\More\Repository;
/**
* Repository for class Post
* This class is between Entity layer(class Post) and access object layer(interface Storage).
* This class is between Entity layer (class Post) and access object layer (interface Storage).
*
* Repository encapsulates the set of objects persisted in a data store and the operations performed over them
* providing a more object-oriented view of the persistence layer
*
* Repository also supports the objective of achieving a clean separation and one-way dependency
* between the domain and data mapping layers
*
* Class PostRepository
*/
class PostRepository
{