Skip to content

Commit

Permalink
More rector, removing @Version
Browse files Browse the repository at this point in the history
  • Loading branch information
tmotyl committed Nov 26, 2021
1 parent d3faa0d commit fb610f7
Show file tree
Hide file tree
Showing 26 changed files with 31 additions and 33 deletions.
3 changes: 1 addition & 2 deletions Classes/Controller/AlbumController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace Macopedia\Community\Controller;


/***************************************************************
* Copyright notice
*
Expand All @@ -26,8 +25,8 @@
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/

use TYPO3\CMS\Extbase\Annotation as Extbase;
use Macopedia\Community\Domain\Model\Album;
use TYPO3\CMS\Extbase\Annotation as Extbase;

/**
* Controller for the Album object
Expand Down
2 changes: 1 addition & 1 deletion Classes/Controller/Cacheable/ControllerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* A basic interface to allow cachable controllers
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
3 changes: 1 addition & 2 deletions Classes/Controller/MessageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/

use Macopedia\Community\Domain\Model\Message;
use Macopedia\Community\Domain\Model\User;
use Macopedia\Community\Service\Notification\Notification;
use TYPO3\CMS\Extbase\Annotation as Extbase;
use Macopedia\Community\Domain\Model\Message;


/**
* The controller for messages
Expand Down
6 changes: 3 additions & 3 deletions Classes/Controller/PhotoController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Macopedia\Community\Controller;

use Macopedia\Community\Domain\Model;
use Macopedia\Community\Domain\Model\Album;
use Macopedia\Community\Domain\Model\Photo;
/***************************************************************
* Copyright notice
*
Expand All @@ -28,6 +25,9 @@
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/

use Macopedia\Community\Domain\Model;
use Macopedia\Community\Domain\Model\Album;
use Macopedia\Community\Domain\Model\Photo;
use Macopedia\Community\Domain\Model\Relation;

/**
Expand Down
2 changes: 1 addition & 1 deletion Classes/Controller/UserController.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* Controller for the User object
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Controller/WallPostController.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* Controller for the WallPost object
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*/
Expand Down
2 changes: 1 addition & 1 deletion Classes/Core/Bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* A custom bootstrap. Wee need this to implement our own caching
*
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Model/Group.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/**
* A group
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*/
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Model/Observer/AbstractObservableEntity.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/**
* An abstract class to make observable models easier
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Model/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* A normal user of the community
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
6 changes: 3 additions & 3 deletions Classes/Domain/Model/WallPost.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

namespace Macopedia\Community\Domain\Model;

use Macopedia\Community\Domain\Model\Observer\AbstractObservableEntity;
use TYPO3\CMS\Extbase\Annotation as Extbase;

/***************************************************************
* Copyright notice
*
Expand All @@ -29,6 +26,9 @@
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/

use Macopedia\Community\Domain\Model\Observer\AbstractObservableEntity;
use TYPO3\CMS\Extbase\Annotation as Extbase;

class WallPost extends AbstractObservableEntity
{
/**
Expand Down
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/UserRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/**
* Repository for User
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions Classes/Domain/Repository/WallPostRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

namespace Macopedia\Community\Domain\Repository;

use Macopedia\Community\Domain\Model\User;
use TYPO3\CMS\Extbase\Persistence\QueryInterface;
/***************************************************************
* Copyright notice
*
Expand All @@ -28,6 +26,8 @@
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/

use Macopedia\Community\Domain\Model\User;
use TYPO3\CMS\Extbase\Persistence\QueryInterface;
use TYPO3\CMS\Extbase\Persistence\Repository;

class WallPostRepository extends Repository
Expand Down
2 changes: 1 addition & 1 deletion Classes/Helper/GroupHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* A helper to manage group related functions
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* A cachable repository. Meaning that can return the tags that were used.
*
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Service/Access/AccessServiceInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* interface and inject it into the BaseController. All you have to do is return true or false
* in the hasAccess() function.
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Service/Access/SimpleAccessService.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* A simple access helper.
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Interface for notification service
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*/
Expand Down
2 changes: 1 addition & 1 deletion Classes/Service/Notification/WallService.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* Notify user with on wall
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
*/
Expand Down
2 changes: 1 addition & 1 deletion Classes/Service/RepositoryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* third party extensions. That's useful if you, for any reason, want to extend a certain model.
* By changing the repository for that model, you can easily replace the model with your own.
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Service/RepositoryServiceInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Repository Service interface - manages repositories. Mainly a convenient method
* to get repositories.
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Classes/Service/SettingsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
/**
* A helper class to get the settings everywhere.
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Php/class.community_wizicon.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/**
* Class that adds the wizard icon.
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Alexander Weiss <[email protected]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* Test for the cache observer
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Unit/Domain/Model/Observer/CacheObserverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* Test for the cache observer
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Unit/Service/Access/SimpleAccessServiceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/**
* Test for the simple access service
*
* @version $Id$
*
* @copyright Copyright belongs to the respective authors
* @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 or later
* @author Pascal Jungblut <[email protected]>
Expand Down

0 comments on commit fb610f7

Please sign in to comment.