Skip to content

Commit 5351e09

Browse files
committed
Change email on phpdocs
1 parent 65ff81e commit 5351e09

Some content is hidden

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

50 files changed

+50
-49
lines changed

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
theme: jekyll-theme-cayman

src/Prettus/Repository/Contracts/CacheableInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Interface CacheableInterface
88
* @package Prettus\Repository\Contracts
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
interface CacheableInterface
1212
{

src/Prettus/Repository/Contracts/CriteriaInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Interface CriteriaInterface
66
* @package Prettus\Repository\Contracts
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
interface CriteriaInterface
1010
{

src/Prettus/Repository/Contracts/Presentable.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Interface Presentable
66
* @package Prettus\Repository\Contracts
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
interface Presentable
1010
{

src/Prettus/Repository/Contracts/PresenterInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Interface PresenterInterface
66
* @package Prettus\Repository\Contracts
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
interface PresenterInterface
1010
{

src/Prettus/Repository/Contracts/RepositoryCriteriaInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Interface RepositoryCriteriaInterface
99
* @package Prettus\Repository\Contracts
10-
* @author Anderson Andrade <contact@andersonandra.de>
10+
* @author Anderson Andrade <contato@andersonandra.de>
1111
*/
1212
interface RepositoryCriteriaInterface
1313
{

src/Prettus/Repository/Contracts/RepositoryInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Interface RepositoryInterface
66
* @package Prettus\Repository\Contracts
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
interface RepositoryInterface
1010
{

src/Prettus/Repository/Contracts/Transformable.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Interface Transformable
66
* @package Prettus\Repository\Contracts
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
interface Transformable
1010
{

src/Prettus/Repository/Criteria/RequestCriteria.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/**
1111
* Class RequestCriteria
1212
* @package Prettus\Repository\Criteria
13-
* @author Anderson Andrade <contact@andersonandra.de>
13+
* @author Anderson Andrade <contato@andersonandra.de>
1414
*/
1515
class RequestCriteria implements CriteriaInterface
1616
{

src/Prettus/Repository/Eloquent/BaseRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* Class BaseRepository
2626
* @package Prettus\Repository\Eloquent
27-
* @author Anderson Andrade <contact@andersonandra.de>
27+
* @author Anderson Andrade <contato@andersonandra.de>
2828
*/
2929
abstract class BaseRepository implements RepositoryInterface, RepositoryCriteriaInterface
3030
{

src/Prettus/Repository/Events/RepositoryEntityCreated.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class RepositoryEntityCreated
66
* @package Prettus\Repository\Events
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class RepositoryEntityCreated extends RepositoryEventBase
1010
{

src/Prettus/Repository/Events/RepositoryEntityDeleted.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class RepositoryEntityDeleted
66
* @package Prettus\Repository\Events
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class RepositoryEntityDeleted extends RepositoryEventBase
1010
{

src/Prettus/Repository/Events/RepositoryEntityUpdated.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class RepositoryEntityUpdated
66
* @package Prettus\Repository\Events
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class RepositoryEntityUpdated extends RepositoryEventBase
1010
{

src/Prettus/Repository/Events/RepositoryEventBase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class RepositoryEventBase
99
* @package Prettus\Repository\Events
10-
* @author Anderson Andrade <contact@andersonandra.de>
10+
* @author Anderson Andrade <contato@andersonandra.de>
1111
*/
1212
abstract class RepositoryEventBase
1313
{

src/Prettus/Repository/Exceptions/RepositoryException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class RepositoryException
88
* @package Prettus\Repository\Exceptions
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class RepositoryException extends Exception
1212
{

src/Prettus/Repository/Generators/BindingsGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class BindingsGenerator
66
* @package Prettus\Repository\Generators
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class BindingsGenerator extends Generator
1010
{

src/Prettus/Repository/Generators/Commands/BindingsCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Class BindingsCommand
1414
* @package Prettus\Repository\Generators\Commands
15-
* @author Anderson Andrade <contact@andersonandra.de>
15+
* @author Anderson Andrade <contato@andersonandra.de>
1616
*/
1717
class BindingsCommand extends Command
1818
{

src/Prettus/Repository/Generators/Commands/ControllerCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Class ControllerCommand
1313
* @package Prettus\Repository\Generators\Commands
14-
* @author Anderson Andrade <contact@andersonandra.de>
14+
* @author Anderson Andrade <contato@andersonandra.de>
1515
*/
1616
class ControllerCommand extends Command
1717
{

src/Prettus/Repository/Generators/Commands/CriteriaCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Class CriteriaCommand
1313
* @package Prettus\Repository\Generators\Commands
14-
* @author Anderson Andrade <contact@andersonandra.de>
14+
* @author Anderson Andrade <contato@andersonandra.de>
1515
*/
1616
class CriteriaCommand extends Command
1717
{

src/Prettus/Repository/Generators/Commands/EntityCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Class EntityCommand
1111
* @package Prettus\Repository\Generators\Commands
12-
* @author Anderson Andrade <contact@andersonandra.de>
12+
* @author Anderson Andrade <contato@andersonandra.de>
1313
*/
1414
class EntityCommand extends Command
1515
{

src/Prettus/Repository/Generators/Commands/PresenterCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Class PresenterCommand
1313
* @package Prettus\Repository\Generators\Commands
14-
* @author Anderson Andrade <contact@andersonandra.de>
14+
* @author Anderson Andrade <contato@andersonandra.de>
1515
*/
1616
class PresenterCommand extends Command
1717
{

src/Prettus/Repository/Generators/Commands/RepositoryCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RepositoryCommand
1616
* @package Prettus\Repository\Generators\Commands
17-
* @author Anderson Andrade <contact@andersonandra.de>
17+
* @author Anderson Andrade <contato@andersonandra.de>
1818
*/
1919
class RepositoryCommand extends Command
2020
{

src/Prettus/Repository/Generators/Commands/TransformerCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Class TransformerCommand
1313
* @package Prettus\Repository\Generators\Commands
14-
* @author Anderson Andrade <contact@andersonandra.de>
14+
* @author Anderson Andrade <contato@andersonandra.de>
1515
*/
1616
class TransformerCommand extends Command
1717
{

src/Prettus/Repository/Generators/ControllerGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class ControllerGenerator
66
* @package Prettus\Repository\Generators
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class ControllerGenerator extends Generator
1010
{

src/Prettus/Repository/Generators/CriteriaGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class CriteriaGenerator
77
* @package Prettus\Repository\Generators
8-
* @author Anderson Andrade <contact@andersonandra.de>
8+
* @author Anderson Andrade <contato@andersonandra.de>
99
*/
1010
class CriteriaGenerator extends Generator
1111
{

src/Prettus/Repository/Generators/FileAlreadyExistsException.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class FileAlreadyExistsException
88
* @package Prettus\Repository\Generators
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class FileAlreadyExistsException extends Exception
1212
{

src/Prettus/Repository/Generators/Generator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* Class Generator
1010
* @package Prettus\Repository\Generators
11-
* @author Anderson Andrade <contact@andersonandra.de>
11+
* @author Anderson Andrade <contato@andersonandra.de>
1212
*/
1313
abstract class Generator
1414
{

src/Prettus/Repository/Generators/MigrationGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Class MigrationGenerator
1111
* @package Prettus\Repository\Generators
12-
* @author Anderson Andrade <contact@andersonandra.de>
12+
* @author Anderson Andrade <contato@andersonandra.de>
1313
*/
1414
class MigrationGenerator extends Generator
1515
{

src/Prettus/Repository/Generators/Migrations/NameParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class NameParser
66
* @package Prettus\Repository\Generators\Migrations
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class NameParser
1010
{

src/Prettus/Repository/Generators/Migrations/RulesParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class RulesParser
88
* @package Prettus\Repository\Generators\Migrations
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class RulesParser implements Arrayable
1212
{

src/Prettus/Repository/Generators/Migrations/SchemaParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class SchemaParser
88
* @package Prettus\Repository\Generators\Migrations
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class SchemaParser implements Arrayable
1212
{

src/Prettus/Repository/Generators/ModelGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class ModelGenerator
99
* @package Prettus\Repository\Generators
10-
* @author Anderson Andrade <contact@andersonandra.de>
10+
* @author Anderson Andrade <contato@andersonandra.de>
1111
*/
1212
class ModelGenerator extends Generator
1313
{

src/Prettus/Repository/Generators/PresenterGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class PresenterGenerator
66
* @package Prettus\Repository\Generators
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class PresenterGenerator extends Generator
1010
{

src/Prettus/Repository/Generators/RepositoryEloquentGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class RepositoryEloquentGenerator
88
* @package Prettus\Repository\Generators
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class RepositoryEloquentGenerator extends Generator
1212
{

src/Prettus/Repository/Generators/RepositoryInterfaceGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class RepositoryInterfaceGenerator
99
* @package Prettus\Repository\Generators
10-
* @author Anderson Andrade <contact@andersonandra.de>
10+
* @author Anderson Andrade <contato@andersonandra.de>
1111
*/
1212
class RepositoryInterfaceGenerator extends Generator
1313
{

src/Prettus/Repository/Generators/Stub.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class Stub
77
* @package Prettus\Repository\Generators
8-
* @author Anderson Andrade <contact@andersonandra.de>
8+
* @author Anderson Andrade <contato@andersonandra.de>
99
*/
1010
class Stub
1111
{

src/Prettus/Repository/Generators/TransformerGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Class TransformerGenerator
66
* @package Prettus\Repository\Generators
7-
* @author Anderson Andrade <contact@andersonandra.de>
7+
* @author Anderson Andrade <contato@andersonandra.de>
88
*/
99
class TransformerGenerator extends Generator
1010
{

src/Prettus/Repository/Generators/ValidatorGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class ValidatorGenerator
99
* @package Prettus\Repository\Generators
10-
* @author Anderson Andrade <contact@andersonandra.de>
10+
* @author Anderson Andrade <contato@andersonandra.de>
1111
*/
1212
class ValidatorGenerator extends Generator
1313
{

src/Prettus/Repository/Helpers/CacheKeys.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Class CacheKeys
77
* @package Prettus\Repository\Helpers
8-
* @author Anderson Andrade <contact@andersonandra.de>
8+
* @author Anderson Andrade <contato@andersonandra.de>
99
*/
1010
class CacheKeys
1111
{

src/Prettus/Repository/Listeners/CleanCacheRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
/**
1414
* Class CleanCacheRepository
1515
* @package Prettus\Repository\Listeners
16-
* @author Anderson Andrade <contact@andersonandra.de>
16+
* @author Anderson Andrade <contato@andersonandra.de>
1717
*/
1818
class CleanCacheRepository
1919
{

src/Prettus/Repository/Presenter/FractalPresenter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/**
1717
* Class FractalPresenter
1818
* @package Prettus\Repository\Presenter
19-
* @author Anderson Andrade <contact@andersonandra.de>
19+
* @author Anderson Andrade <contato@andersonandra.de>
2020
*/
2121
abstract class FractalPresenter implements PresenterInterface
2222
{

src/Prettus/Repository/Presenter/ModelFractalPresenter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* Class ModelFractalPresenter
99
* @package Prettus\Repository\Presenter
10-
* @author Anderson Andrade <contact@andersonandra.de>
10+
* @author Anderson Andrade <contato@andersonandra.de>
1111
*/
1212
class ModelFractalPresenter extends FractalPresenter
1313
{

src/Prettus/Repository/Providers/EventServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class EventServiceProvider
88
* @package Prettus\Repository\Providers
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class EventServiceProvider extends ServiceProvider
1212
{

src/Prettus/Repository/Providers/LumenRepositoryServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class LumenRepositoryServiceProvider
88
* @package Prettus\Repository\Providers
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class LumenRepositoryServiceProvider extends ServiceProvider
1212
{

src/Prettus/Repository/Providers/RepositoryServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Class RepositoryServiceProvider
88
* @package Prettus\Repository\Providers
9-
* @author Anderson Andrade <contact@andersonandra.de>
9+
* @author Anderson Andrade <contato@andersonandra.de>
1010
*/
1111
class RepositoryServiceProvider extends ServiceProvider
1212
{

0 commit comments

Comments
 (0)