Skip to content

Commit 83871fa

Browse files
committed
Comment refactoring
1 parent 37b1613 commit 83871fa

35 files changed

+98
-98
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 i22 Digitalagentur GmbH
3+
Copyright (c) 2018 moay
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

config/services.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
parameters:
2-
recipe_repo_private: https://github.com/i22-digitalagentur/demo-recipes
2+
recipe_repo_private: https://github.com/moay/demo-recipes
33

44
official_endpoint: https://symfony.sh/
55
proxy_official_endpoint: true

src/Command/Recipes/RecipeRepoManagerCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -23,7 +23,7 @@
2323
/**
2424
* Class RecipeRepoManagerCommand
2525
* @package App\Command\Recipes
26-
* @author Manuel Voss <manuel.voss@i22.de>
26+
* @author moay <mv@moay.de>
2727
*/
2828
abstract class RecipeRepoManagerCommand extends Command implements RecipeRepoManagerCommandInterface
2929
{

src/Command/Recipes/RecipeRepoManagerCommandInterface.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Interface RecipeRepoManagerCommandInterface
1616
* @package App\Command\Recipes
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
interface RecipeRepoManagerCommandInterface
2020
{

src/Command/Recipes/RecipesInitializeCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RecipesInitializeCommand
1616
* @package App\Command\Recipes
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
class RecipesInitializeCommand extends RecipeRepoManagerCommand
2020
{

src/Command/Recipes/RecipesRemoveCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RecipesRemoveCommand
1616
* @package App\Command\Recipes
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
class RecipesRemoveCommand extends RecipeRepoManagerCommand
2020
{

src/Command/Recipes/RecipesResetCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RecipesResetCommand
1616
* @package App\Command\Recipes
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
class RecipesResetCommand extends RecipeRepoManagerCommand
2020
{

src/Command/Recipes/RecipesUpdateCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RecipesUpdateCommand
1616
* @package App\Command\Recipes
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
class RecipesUpdateCommand extends RecipeRepoManagerCommand
2020
{

src/Command/System/SystemStatusCommand.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -20,7 +20,7 @@
2020
/**
2121
* Class SystemStatusCommand
2222
* @package App\Command\System
23-
* @author Manuel Voss <manuel.voss@i22.de>
23+
* @author moay <mv@moay.de>
2424
*/
2525
class SystemStatusCommand extends Command
2626
{

src/Controller/EndpointController.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -24,7 +24,7 @@
2424
/**
2525
* Class EndpointController
2626
* @package App\Controller
27-
* @author Manuel Voss <manuel.voss@i22.de>
27+
* @author moay <mv@moay.de>
2828
*/
2929
class EndpointController extends Controller
3030
{

src/Controller/FrontendController.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -19,7 +19,7 @@
1919
/**
2020
* Class FrontendController
2121
* @package App\Controller
22-
* @author Manuel Voss <manuel.voss@i22.de>
22+
* @author moay <mv@moay.de>
2323
*/
2424
class FrontendController extends Controller
2525
{

src/Controller/WebhookController.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* Class WebhookController
2020
* @package App\Controller
21-
* @author Manuel Voss <manuel.voss@i22.de>
21+
* @author moay <mv@moay.de>
2222
*/
2323
class WebhookController extends Controller
2424
{

src/Entity/Recipe.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.

src/Event/RepoStatusChangedEvent.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -17,7 +17,7 @@
1717
/**
1818
* Class RepoStatusChangedEvent
1919
* @package App\Event
20-
* @author Manuel Voss <manuel.voss@i22.de>
20+
* @author moay <mv@moay.de>
2121
*/
2222
class RepoStatusChangedEvent extends Event
2323
{

src/EventSubscriber/LocalAliasEventSubscriber.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -20,7 +20,7 @@
2020
/**
2121
* Class LocalAliasEventSubscriber
2222
* @package App\EventSubscriber
23-
* @author Manuel Voss <manuel.voss@i22.de>
23+
* @author moay <mv@moay.de>
2424
*/
2525
class LocalAliasEventSubscriber implements EventSubscriberInterface
2626
{

src/EventSubscriber/StatusReportEventSubscriber.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* Class StatusReportEventSubscriber
2020
* @package App\EventSubscriber
21-
* @author Manuel Voss <manuel.voss@i22.de>
21+
* @author moay <mv@moay.de>
2222
*/
2323
class StatusReportEventSubscriber implements EventSubscriberInterface
2424
{

src/Exception/RecipeRepoBackupException.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RecipeRepoBackupException
1616
* @package App\Exception
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
class RecipeRepoBackupException extends \Exception
2020
{

src/Exception/RecipeRepoManagerException.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
/**
1515
* Class RecipeRepoManagerException
1616
* @package App\Exception
17-
* @author Manuel Voss <manuel.voss@i22.de>
17+
* @author moay <mv@moay.de>
1818
*/
1919
class RecipeRepoManagerException extends \Exception
2020
{

src/RecipeRepo/ContribRecipeRepo.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
/*
4-
* This file is part of the i22 symfony-flex-server package.
4+
* This file is part of the moay symfony-flex-server package.
55
*
6-
* (c) i22 Digitalagentur GmbH <[email protected]>
6+
* (c) moay
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -18,7 +18,7 @@
1818
/**
1919
* Class ContribRecipeRepo
2020
* @package App\Service\RecipeRepo
21-
* @author Manuel Voss <manuel.voss@i22.de>
21+
* @author moay <mv@moay.de>
2222
*/
2323
class ContribRecipeRepo extends RecipeRepo
2424
{

src/RecipeRepo/GitRepo.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22
/*
3-
* This file is part of the i22 symfony-flex-server package.
3+
* This file is part of the moay symfony-flex-server package.
44
*
5-
* (c) i22 Digitalagentur GmbH <[email protected]>
5+
* (c) moay
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
@@ -16,7 +16,7 @@
1616
/**
1717
* Class GitRepo
1818
* @package App\RecipeRepo
19-
* @author Manuel Voss <manuel.voss@i22.de>
19+
* @author moay <mv@moay.de>
2020
*/
2121
class GitRepo extends GitRepository
2222
{

0 commit comments

Comments
 (0)