mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 02:56:13 +02:00

[TASK] Remove author annotations (#294)

Co-authored-by: Łukasz Uznański <l.uznanski@macopedia.com>
This commit is contained in:
Łukasz Uznański 2021-09-07 08:51:11 +02:00 committed by GitHub
parent 04d8ffed31
commit 4bde411dd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 0 additions and 20 deletions

View file

@ -10,8 +10,6 @@ use TYPO3\CMS\Extbase\Mvc\Controller\ActionController;
/** /**
* Controller for the main "Tea" FE plugin. * Controller for the main "Tea" FE plugin.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class TeaController extends ActionController class TeaController extends ActionController
{ {

View file

@ -11,8 +11,6 @@ use TYPO3\CMS\Extbase\Persistence\Generic\LazyLoadingProxy;
/** /**
* This class represents a tea (flavor), e.g., "Earl Grey". * This class represents a tea (flavor), e.g., "Earl Grey".
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class Tea extends AbstractEntity class Tea extends AbstractEntity
{ {

View file

@ -10,8 +10,6 @@ use TYPO3\CMS\Extbase\Persistence\Repository;
/** /**
* Repository for Tea models. * Repository for Tea models.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class TeaRepository extends Repository class TeaRepository extends Repository
{ {

View file

@ -11,8 +11,6 @@ use TYPO3\CMS\Extbase\Persistence\Generic\QuerySettingsInterface;
* This trait for repositories makes the repository ignore the storage page setting when fetching models. * This trait for repositories makes the repository ignore the storage page setting when fetching models.
* *
* @property ObjectManagerInterface $objectManager * @property ObjectManagerInterface $objectManager
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
trait StoragePageAgnosticTrait trait StoragePageAgnosticTrait
{ {

View file

@ -6,8 +6,6 @@ namespace TTN\Tea\Tests\Acceptance;
/** /**
* Test case. * Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de>
*/ */
class StarterCest class StarterCest
{ {

View file

@ -9,8 +9,6 @@ use TYPO3\CMS\Core\Utility\VersionNumberUtility;
/** /**
* Test case. * Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de>
*/ */
class TeaControllerTest extends FunctionalTestCase class TeaControllerTest extends FunctionalTestCase
{ {

View file

@ -14,8 +14,6 @@ use TYPO3\CMS\Extbase\Persistence\Generic\PersistenceManager;
/** /**
* Test case. * Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class TeaRepositoryTest extends FunctionalTestCase class TeaRepositoryTest extends FunctionalTestCase
{ {

View file

@ -16,8 +16,6 @@ use TYPO3\CMS\Fluid\View\TemplateView;
/** /**
* Test case. * Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class TeaControllerTest extends UnitTestCase class TeaControllerTest extends UnitTestCase
{ {

View file

@ -11,8 +11,6 @@ use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
/** /**
* Test case. * Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class TeaTest extends UnitTestCase class TeaTest extends UnitTestCase
{ {

View file

@ -12,8 +12,6 @@ use TYPO3\CMS\Extbase\Persistence\Repository;
/** /**
* Test case. * Test case.
*
* @author Oliver Klee <typo3-coding@oliverklee.de
*/ */
class TeaRepositoryTest extends UnitTestCase class TeaRepositoryTest extends UnitTestCase
{ {