Skip to content

Commit

Permalink
remove @author
Browse files Browse the repository at this point in the history
  • Loading branch information
matej21 committed Mar 19, 2018
1 parent 3d82ffe commit 24ca4fc
Show file tree
Hide file tree
Showing 22 changed files with 0 additions and 58 deletions.
3 changes: 0 additions & 3 deletions src/CountQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

use Nette\SmartObject;

/**
* @author David Matejka
*/
class CountQuery implements IQuery, IOuterQuery
{
use SmartObject;
Expand Down
3 changes: 0 additions & 3 deletions src/DI/QueriesExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
use Librette\Queries\MainQueryHandler;
use Nette\DI\CompilerExtension;

/**
* @author David Matejka
*/
class QueriesExtension extends CompilerExtension
{

Expand Down
3 changes: 0 additions & 3 deletions src/IOuterQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IOuterQuery extends IQuery
{
public function getInnerQuery(): IQuery;
Expand Down
3 changes: 0 additions & 3 deletions src/IQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IQuery
{
/**
Expand Down
3 changes: 0 additions & 3 deletions src/IQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IQueryHandler
{
public function supports(IQuery $query): bool;
Expand Down
3 changes: 0 additions & 3 deletions src/IQueryHandlerAccessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IQueryHandlerAccessor
{
public function get(): IQueryHandler;
Expand Down
3 changes: 0 additions & 3 deletions src/IQueryModifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IQueryModifier
{
public function modify(IQuery $query): void;
Expand Down
3 changes: 0 additions & 3 deletions src/IQueryable.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IQueryable
{
public function getHandler(): IQueryHandler;
Expand Down
2 changes: 0 additions & 2 deletions src/IResultSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

/**
* Lazy collection
*
* @author David Matejka
*/
interface IResultSet extends \Traversable, \Countable
{
Expand Down
3 changes: 0 additions & 3 deletions src/IResultSetQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Librette\Queries;

/**
* @author David Matejka
*/
interface IResultSetQuery extends IQuery
{
public function fetch(IQueryable $queryable): IResultSet;
Expand Down
3 changes: 0 additions & 3 deletions src/Internal/InternalQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
use Librette\Queries\IQueryHandlerAccessor;
use Nette\SmartObject;

/**
* @author David Matejka
*/
class InternalQueryHandler implements IQueryHandler
{
use SmartObject;
Expand Down
3 changes: 0 additions & 3 deletions src/Internal/InternalQueryable.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@
use Librette\Queries\IQueryHandler;
use Nette\SmartObject;

/**
* @author David Matejka
*/
class InternalQueryable implements IQueryable
{
use SmartObject;
Expand Down
3 changes: 0 additions & 3 deletions src/MainQueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

use Nette\SmartObject;

/**
* @author David Matejka
*/
class MainQueryHandler implements IQueryHandler
{
use SmartObject;
Expand Down
3 changes: 0 additions & 3 deletions src/SingleItemQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

use Nette\SmartObject;

/**
* @author David Matejka
*/
class SingleItemQuery implements IQuery, IOuterQuery
{
use SmartObject;
Expand Down
1 change: 0 additions & 1 deletion tests/src/ExtensionTestCase.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ require_once __DIR__ . '/../bootstrap.php';


/**
* @author David Matějka
* @testCase
*/
class ExtensionTestCase extends Tester\TestCase
Expand Down
3 changes: 0 additions & 3 deletions tests/src/Mocks/QueryHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
use Librette\Queries\IQueryable;
use Librette\Queries\IQueryHandler;

/**
* @author David Matejka
*/
class QueryHandler implements IQueryHandler
{

Expand Down
3 changes: 0 additions & 3 deletions tests/src/Mocks/QueryModifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
use Librette\Queries\IQuery;
use Librette\Queries\IQueryModifier;

/**
* @author David Matejka
*/
class QueryModifier implements IQueryModifier
{
public $queries = [];
Expand Down
3 changes: 0 additions & 3 deletions tests/src/Mocks/ResultSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@
use Librette\Queries\IResultSet;
use Nette\Utils\Paginator;

/**
* @author David Matejka
*/
class ResultSet implements \IteratorAggregate, IResultSet
{
/** @var array */
Expand Down
4 changes: 0 additions & 4 deletions tests/src/Mocks/UserQuery.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,11 @@
use Librette\Queries\IResultSet;
use Librette\Queries\IResultSetQuery;

/**
* @author David Matejka
*/
class UserQuery implements IResultSetQuery
{

public function fetch(IQueryable $queryable): IResultSet
{
return new ResultSet([['name' => 'John'], ['name' => 'Jack']]);
}

}
1 change: 0 additions & 1 deletion tests/src/OuterQueriesTestCase.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ require_once __DIR__ . '/../bootstrap.php';


/**
* @author David Matějka
* @testCase
*/
class OuterQueriesTestCase extends Tester\TestCase
Expand Down
1 change: 0 additions & 1 deletion tests/src/QueryHandlerTestCase.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ require_once __DIR__ . '/../bootstrap.php';


/**
* @author David Matějka
* @testCase
*/
class QueryHandlerTestCase extends Tester\TestCase
Expand Down
1 change: 0 additions & 1 deletion tests/src/QueryModifierTestCase.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ require_once __DIR__ . '/../bootstrap.php';


/**
* @author David Matějka
* @testCase
*/
class QueryModifierTestCase extends Tester\TestCase
Expand Down

0 comments on commit 24ca4fc

Please sign in to comment.