diff --git a/lib/Alchemy/Phrasea/Cache/ApcCache.php b/lib/Alchemy/Phrasea/Cache/ApcCache.php index cd1da99e74..814af3b844 100644 --- a/lib/Alchemy/Phrasea/Cache/ApcCache.php +++ b/lib/Alchemy/Phrasea/Cache/ApcCache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\ApcCache as DoctrineApc; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class ApcCache extends DoctrineApc implements Cache { diff --git a/lib/Alchemy/Phrasea/Cache/ArrayCache.php b/lib/Alchemy/Phrasea/Cache/ArrayCache.php index bb40789987..56a27713c8 100644 --- a/lib/Alchemy/Phrasea/Cache/ArrayCache.php +++ b/lib/Alchemy/Phrasea/Cache/ArrayCache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\ArrayCache as DoctrineArray; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class ArrayCache extends DoctrineArray implements Cache { diff --git a/lib/Alchemy/Phrasea/Cache/Cache.php b/lib/Alchemy/Phrasea/Cache/Cache.php index 9995c64985..eefff0b6cf 100644 --- a/lib/Alchemy/Phrasea/Cache/Cache.php +++ b/lib/Alchemy/Phrasea/Cache/Cache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\Cache as DoctrineCache; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface Cache extends DoctrineCache { /** diff --git a/lib/Alchemy/Phrasea/Cache/Exception.php b/lib/Alchemy/Phrasea/Cache/Exception.php index 0174ca7338..1459c4b162 100644 --- a/lib/Alchemy/Phrasea/Cache/Exception.php +++ b/lib/Alchemy/Phrasea/Cache/Exception.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Cache; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Exception extends \Exception { diff --git a/lib/Alchemy/Phrasea/Cache/MemcacheCache.php b/lib/Alchemy/Phrasea/Cache/MemcacheCache.php index 0fda6563b8..5934697389 100644 --- a/lib/Alchemy/Phrasea/Cache/MemcacheCache.php +++ b/lib/Alchemy/Phrasea/Cache/MemcacheCache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\MemcacheCache as DoctrineMemcache; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class MemcacheCache extends DoctrineMemcache implements Cache { diff --git a/lib/Alchemy/Phrasea/Cache/RedisCache.php b/lib/Alchemy/Phrasea/Cache/RedisCache.php index e2ecc934e9..4e35e9bf2b 100644 --- a/lib/Alchemy/Phrasea/Cache/RedisCache.php +++ b/lib/Alchemy/Phrasea/Cache/RedisCache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\CacheProvider; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class RedisCache extends CacheProvider implements Cache { /** diff --git a/lib/Alchemy/Phrasea/Cache/WinCacheCache.php b/lib/Alchemy/Phrasea/Cache/WinCacheCache.php index 90cffaf84f..03feff6a2c 100644 --- a/lib/Alchemy/Phrasea/Cache/WinCacheCache.php +++ b/lib/Alchemy/Phrasea/Cache/WinCacheCache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\WincacheCache as DoctrineWinCache; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class WinCacheCache extends DoctrineWinCache implements Cache { diff --git a/lib/Alchemy/Phrasea/Cache/XcacheCache.php b/lib/Alchemy/Phrasea/Cache/XcacheCache.php index 8f5c47018c..50ba63b411 100644 --- a/lib/Alchemy/Phrasea/Cache/XcacheCache.php +++ b/lib/Alchemy/Phrasea/Cache/XcacheCache.php @@ -13,11 +13,6 @@ namespace Alchemy\Phrasea\Cache; use Doctrine\Common\Cache\XcacheCache as DoctrineXcache; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class XcacheCache extends DoctrineXcache implements Cache { diff --git a/lib/Alchemy/Phrasea/Command/BuildMissingSubdefs.php b/lib/Alchemy/Phrasea/Command/BuildMissingSubdefs.php index 939512694c..7e2f7968d3 100644 --- a/lib/Alchemy/Phrasea/Command/BuildMissingSubdefs.php +++ b/lib/Alchemy/Phrasea/Command/BuildMissingSubdefs.php @@ -16,12 +16,6 @@ use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/** - * Rebuild only missing subdefs - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class BuildMissingSubdefs extends Command { /** diff --git a/lib/Alchemy/Phrasea/Command/Command.php b/lib/Alchemy/Phrasea/Command/Command.php index 1f80d7d304..4d54c18605 100644 --- a/lib/Alchemy/Phrasea/Command/Command.php +++ b/lib/Alchemy/Phrasea/Command/Command.php @@ -18,12 +18,6 @@ use Symfony\Component\Console\Command\Command as SymfoCommand; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/** - * Abstract command which represents a Phraseanet base command - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class Command extends SymfoCommand implements CommandInterface { /** diff --git a/lib/Alchemy/Phrasea/Command/CreateCollection.php b/lib/Alchemy/Phrasea/Command/CreateCollection.php index b2d78c3f33..4c48e1d350 100644 --- a/lib/Alchemy/Phrasea/Command/CreateCollection.php +++ b/lib/Alchemy/Phrasea/Command/CreateCollection.php @@ -17,12 +17,6 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/** - * Create a collection Command - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class CreateCollection extends Command { diff --git a/lib/Alchemy/Phrasea/Command/RecordAdd.php b/lib/Alchemy/Phrasea/Command/RecordAdd.php index e1cad50439..3872778e6d 100644 --- a/lib/Alchemy/Phrasea/Command/RecordAdd.php +++ b/lib/Alchemy/Phrasea/Command/RecordAdd.php @@ -21,12 +21,6 @@ use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/** - * Create a record command - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class RecordAdd extends Command { /** diff --git a/lib/Alchemy/Phrasea/Command/RescanTechnicalDatas.php b/lib/Alchemy/Phrasea/Command/RescanTechnicalDatas.php index 4552a20cb8..4a55c6a639 100644 --- a/lib/Alchemy/Phrasea/Command/RescanTechnicalDatas.php +++ b/lib/Alchemy/Phrasea/Command/RescanTechnicalDatas.php @@ -15,13 +15,6 @@ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/** - * Rescan Technical Datas command : Rescan all records of all databases and - * rescan technical datas. - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class RescanTechnicalDatas extends Command { /** diff --git a/lib/Alchemy/Phrasea/Command/UpgradeDBDatas.php b/lib/Alchemy/Phrasea/Command/UpgradeDBDatas.php index 3ac72c1105..12213a3916 100644 --- a/lib/Alchemy/Phrasea/Command/UpgradeDBDatas.php +++ b/lib/Alchemy/Phrasea/Command/UpgradeDBDatas.php @@ -19,11 +19,6 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use vierbergenlars\SemVer\version; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class UpgradeDBDatas extends Command { protected $upgrades = []; diff --git a/lib/Alchemy/Phrasea/Controller/AbstractDelivery.php b/lib/Alchemy/Phrasea/Controller/AbstractDelivery.php index 3bc3810cf7..890edcbb1f 100644 --- a/lib/Alchemy/Phrasea/Controller/AbstractDelivery.php +++ b/lib/Alchemy/Phrasea/Controller/AbstractDelivery.php @@ -16,11 +16,6 @@ use Alchemy\Phrasea\Http\DeliverDataInterface; use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class AbstractDelivery implements ControllerProviderInterface { public function deliverContent(Request $request, \record_adapter $record, $subdef, $watermark, $stamp, Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Dashboard.php b/lib/Alchemy/Phrasea/Controller/Admin/Dashboard.php index efd5988fbf..24287e6210 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Dashboard.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Dashboard.php @@ -19,11 +19,6 @@ use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Dashboard implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Databox.php b/lib/Alchemy/Phrasea/Controller/Admin/Databox.php index 3a1a5e295a..372df014c0 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Databox.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Databox.php @@ -16,11 +16,6 @@ use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Databox implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php b/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php index 01ddc21167..1426a48595 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php @@ -18,11 +18,6 @@ use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Databoxes implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Publications.php b/lib/Alchemy/Phrasea/Controller/Admin/Publications.php index 476a8034b9..20971dad14 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Publications.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Publications.php @@ -19,11 +19,6 @@ use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Publications implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Root.php b/lib/Alchemy/Phrasea/Controller/Admin/Root.php index 5abe74203d..87454d6657 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Root.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Root.php @@ -17,11 +17,6 @@ use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Root implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/SearchEngine.php b/lib/Alchemy/Phrasea/Controller/Admin/SearchEngine.php index b0f73d6016..a6c4fd3c95 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/SearchEngine.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/SearchEngine.php @@ -16,11 +16,6 @@ use Symfony\Component\HttpFoundation\Request; use Silex\Application; use Silex\ControllerProviderInterface; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class SearchEngine implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Setup.php b/lib/Alchemy/Phrasea/Controller/Admin/Setup.php index dacbb807d4..5839a66c2b 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Setup.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Setup.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Controller\Admin; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Application; use Silex\Application as SilexApplication; use Silex\ControllerProviderInterface; @@ -23,11 +18,6 @@ use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Setup implements ControllerProviderInterface { public function connect(SilexApplication $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Subdefs.php b/lib/Alchemy/Phrasea/Controller/Admin/Subdefs.php index 89fb639388..d65e401ec7 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Subdefs.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Subdefs.php @@ -15,11 +15,6 @@ use Silex\Application; use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Subdefs implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Users.php b/lib/Alchemy/Phrasea/Controller/Admin/Users.php index 5867f2b758..6615fda7da 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Users.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Users.php @@ -18,11 +18,6 @@ use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Users implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Datafiles.php b/lib/Alchemy/Phrasea/Controller/Datafiles.php index 5680565aac..f59b1e916f 100644 --- a/lib/Alchemy/Phrasea/Controller/Datafiles.php +++ b/lib/Alchemy/Phrasea/Controller/Datafiles.php @@ -17,11 +17,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Datafiles extends AbstractDelivery { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Exception.php b/lib/Alchemy/Phrasea/Controller/Exception.php index f538434a31..8c5fdd05f4 100644 --- a/lib/Alchemy/Phrasea/Controller/Exception.php +++ b/lib/Alchemy/Phrasea/Controller/Exception.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Controller; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Exception extends \Exception { diff --git a/lib/Alchemy/Phrasea/Controller/Permalink.php b/lib/Alchemy/Phrasea/Controller/Permalink.php index a992319447..cfc4396793 100644 --- a/lib/Alchemy/Phrasea/Controller/Permalink.php +++ b/lib/Alchemy/Phrasea/Controller/Permalink.php @@ -17,11 +17,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Permalink extends AbstractDelivery { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/BasketController.php b/lib/Alchemy/Phrasea/Controller/Prod/BasketController.php index ed931703de..0ec8dc451a 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/BasketController.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/BasketController.php @@ -21,11 +21,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class BasketController implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Edit.php b/lib/Alchemy/Phrasea/Controller/Prod/Edit.php index 5be280301e..83dc31ef01 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Edit.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Edit.php @@ -18,11 +18,6 @@ use Silex\Application; use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Edit implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Feed.php b/lib/Alchemy/Phrasea/Controller/Prod/Feed.php index 0dd3fb2b51..5dfe675260 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Feed.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Feed.php @@ -23,11 +23,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Feed implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Language.php b/lib/Alchemy/Phrasea/Controller/Prod/Language.php index 5ff3b4d10f..c7cee2c7e1 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Language.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Language.php @@ -14,11 +14,6 @@ namespace Alchemy\Phrasea\Controller\Prod; use Silex\Application; use Silex\ControllerProviderInterface; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Language implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php b/lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php index 2e44ab203d..1c0f709e90 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php @@ -21,14 +21,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\Filesystem\Exception\IOException; -/** - * Lazaret controller collection - * - * Defines routes related to the lazaret (quarantine) functionality - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Lazaret implements ControllerProviderInterface { /** diff --git a/lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php b/lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php index 507d125bc0..c30b57173d 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php @@ -16,11 +16,6 @@ use Silex\Application; use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class MoveCollection implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Order.php b/lib/Alchemy/Phrasea/Controller/Prod/Order.php index 0ca4ef6fac..a5dc6c8694 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Order.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Order.php @@ -25,11 +25,6 @@ use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Order implements ControllerProviderInterface { /** diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Printer.php b/lib/Alchemy/Phrasea/Controller/Prod/Printer.php index 269b2532b4..af71471218 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Printer.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Printer.php @@ -17,11 +17,6 @@ use Alchemy\Phrasea\Helper\Record as RecordHelper; use Alchemy\Phrasea\Out\Module\PDF as PDFExport; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Printer implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Push.php b/lib/Alchemy/Phrasea/Controller/Prod/Push.php index 98ec635cc3..fd90a1a9cc 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Push.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Push.php @@ -26,11 +26,6 @@ use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Push implements ControllerProviderInterface { protected function getUserFormatter() diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Query.php b/lib/Alchemy/Phrasea/Controller/Prod/Query.php index 113f3036bd..c49c8c8e2a 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Query.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Query.php @@ -19,11 +19,6 @@ use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Query implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Root.php b/lib/Alchemy/Phrasea/Controller/Prod/Root.php index dd310cb6b3..63cf73e046 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Root.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Root.php @@ -20,11 +20,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Finder\Finder; use Alchemy\Phrasea\Helper; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Root implements ControllerProviderInterface { public function connect(SilexApplication $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Story.php b/lib/Alchemy/Phrasea/Controller/Prod/Story.php index c8215f74cb..33b008cf99 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Story.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Story.php @@ -20,11 +20,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Story implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/TOU.php b/lib/Alchemy/Phrasea/Controller/Prod/TOU.php index 1472b88f75..1ce737297a 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/TOU.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/TOU.php @@ -17,11 +17,6 @@ use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class TOU implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Tools.php b/lib/Alchemy/Phrasea/Controller/Prod/Tools.php index d5a87bc851..81eb24243d 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Tools.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Tools.php @@ -19,11 +19,6 @@ use Silex\Application; use Silex\ControllerProviderInterface; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Tools implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Tooltip.php b/lib/Alchemy/Phrasea/Controller/Prod/Tooltip.php index ce41398736..42f138a5eb 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Tooltip.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Tooltip.php @@ -17,11 +17,6 @@ use Symfony\Component\HttpFoundation\Request; use Silex\Application; use Silex\ControllerProviderInterface; -/** - * @todo Check if a user has access to record before sending the response - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Tooltip implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Upload.php b/lib/Alchemy/Phrasea/Controller/Prod/Upload.php index 6e6b6ca2e0..aeb1e6dd95 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Upload.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Upload.php @@ -24,14 +24,6 @@ use Symfony\Component\HttpFoundation\File\UploadedFile; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -/** - * Upload controller collection - * - * Defines routes related to the Upload process in phraseanet - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Upload implements ControllerProviderInterface { /** diff --git a/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php b/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php index 2441726862..b1cff393ed 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php @@ -21,11 +21,6 @@ use Symfony\Component\HttpFoundation\Request; use Doctrine\Common\Collections\ArrayCollection; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class UsrLists implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php b/lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php index 8014b40f47..14cd04cc29 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php @@ -21,11 +21,6 @@ use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class WorkZone implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Root/Developers.php b/lib/Alchemy/Phrasea/Controller/Root/Developers.php index a17e2ef8d7..f7964aed6c 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/Developers.php +++ b/lib/Alchemy/Phrasea/Controller/Root/Developers.php @@ -18,11 +18,6 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Developers implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Root/RSSFeeds.php b/lib/Alchemy/Phrasea/Controller/Root/RSSFeeds.php index cbe408bc7a..f82ed19285 100644 --- a/lib/Alchemy/Phrasea/Controller/Root/RSSFeeds.php +++ b/lib/Alchemy/Phrasea/Controller/Root/RSSFeeds.php @@ -16,11 +16,6 @@ use Alchemy\Phrasea\Feed\Aggregate; use Silex\Application; use Silex\ControllerProviderInterface; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class RSSFeeds implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Utils/ConnectionTest.php b/lib/Alchemy/Phrasea/Controller/Utils/ConnectionTest.php index 63d0bcd42b..91901bcf5c 100644 --- a/lib/Alchemy/Phrasea/Controller/Utils/ConnectionTest.php +++ b/lib/Alchemy/Phrasea/Controller/Utils/ConnectionTest.php @@ -14,11 +14,6 @@ namespace Alchemy\Phrasea\Controller\Utils; use Silex\Application; use Silex\ControllerProviderInterface; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class ConnectionTest implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Controller/Utils/PathFileTest.php b/lib/Alchemy/Phrasea/Controller/Utils/PathFileTest.php index 410d063e30..508944307f 100644 --- a/lib/Alchemy/Phrasea/Controller/Utils/PathFileTest.php +++ b/lib/Alchemy/Phrasea/Controller/Utils/PathFileTest.php @@ -15,11 +15,6 @@ use Symfony\Component\HttpFoundation\Request; use Silex\Application; use Silex\ControllerProviderInterface; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class PathFileTest implements ControllerProviderInterface { public function connect(Application $app) diff --git a/lib/Alchemy/Phrasea/Core/Version.php b/lib/Alchemy/Phrasea/Core/Version.php index 1490fdf18f..5ba97110a5 100644 --- a/lib/Alchemy/Phrasea/Core/Version.php +++ b/lib/Alchemy/Phrasea/Core/Version.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Core; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Version { protected static $number = '3.9.0-alpha.8'; diff --git a/lib/Alchemy/Phrasea/Feed/RSS/Image.php b/lib/Alchemy/Phrasea/Feed/RSS/Image.php index 15c30c2184..c7124e02ce 100644 --- a/lib/Alchemy/Phrasea/Feed/RSS/Image.php +++ b/lib/Alchemy/Phrasea/Feed/RSS/Image.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Feed\RSS; -/** - * - * @package Feeds - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Image implements FeedRSSImageInterface { /** diff --git a/lib/Alchemy/Phrasea/Feed/RSS/ImageInterface.php b/lib/Alchemy/Phrasea/Feed/RSS/ImageInterface.php index 35298e48cd..0d5f5742e8 100644 --- a/lib/Alchemy/Phrasea/Feed/RSS/ImageInterface.php +++ b/lib/Alchemy/Phrasea/Feed/RSS/ImageInterface.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Feed\RSS; -/** - * - * @package Feeds - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface ImageInterface { diff --git a/lib/Alchemy/Phrasea/Helper/Helper.php b/lib/Alchemy/Phrasea/Helper/Helper.php index adf0232341..d49981da55 100644 --- a/lib/Alchemy/Phrasea/Helper/Helper.php +++ b/lib/Alchemy/Phrasea/Helper/Helper.php @@ -14,11 +14,6 @@ namespace Alchemy\Phrasea\Helper; use Alchemy\Phrasea\Application; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Helper { /** diff --git a/lib/Alchemy/Phrasea/Helper/Prod.php b/lib/Alchemy/Phrasea/Helper/Prod.php index b32c4b48fb..d85cf1d9d0 100644 --- a/lib/Alchemy/Phrasea/Helper/Prod.php +++ b/lib/Alchemy/Phrasea/Helper/Prod.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Helper; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Prod extends Helper { diff --git a/lib/Alchemy/Phrasea/Helper/Record/Bridge.php b/lib/Alchemy/Phrasea/Helper/Record/Bridge.php index 59ef847f58..09c438372d 100644 --- a/lib/Alchemy/Phrasea/Helper/Record/Bridge.php +++ b/lib/Alchemy/Phrasea/Helper/Record/Bridge.php @@ -13,12 +13,6 @@ namespace Alchemy\Phrasea\Helper\Record; use Alchemy\Phrasea\Helper\Record\Helper as RecordHelper; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Bridge extends RecordHelper { protected $flatten_groupings = true; diff --git a/lib/Alchemy/Phrasea/Helper/Record/Helper.php b/lib/Alchemy/Phrasea/Helper/Record/Helper.php index 5b2400f3e3..54cc6a6e3a 100644 --- a/lib/Alchemy/Phrasea/Helper/Record/Helper.php +++ b/lib/Alchemy/Phrasea/Helper/Record/Helper.php @@ -15,11 +15,6 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Model\Entities\Basket; use Symfony\Component\HttpFoundation\Request; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Helper extends \Alchemy\Phrasea\Helper\Helper { /** diff --git a/lib/Alchemy/Phrasea/Helper/Record/Printer.php b/lib/Alchemy/Phrasea/Helper/Record/Printer.php index a610e072af..18d86f6738 100644 --- a/lib/Alchemy/Phrasea/Helper/Record/Printer.php +++ b/lib/Alchemy/Phrasea/Helper/Record/Printer.php @@ -15,15 +15,6 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Helper\Record\Helper as RecordHelper; use Symfony\Component\HttpFoundation\Request; -/** - * Edit Record Helper - * This object handles /edit/ request and filters records that user can edit - * - * It prepares metadatas, databases structures. - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Printer extends RecordHelper { protected $flatten_groupings = true; diff --git a/lib/Alchemy/Phrasea/Helper/Record/Push.php b/lib/Alchemy/Phrasea/Helper/Record/Push.php index 533db7f209..ccf8f605a0 100644 --- a/lib/Alchemy/Phrasea/Helper/Record/Push.php +++ b/lib/Alchemy/Phrasea/Helper/Record/Push.php @@ -13,15 +13,6 @@ namespace Alchemy\Phrasea\Helper\Record; use Alchemy\Phrasea\Helper\Record\Helper as RecordHelper; -/** - * Edit Record Helper - * This object handles /edit/ request and filters records that user can edit - * - * It prepares metadatas, databases structures. - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Push extends RecordHelper { protected $flatten_groupings = true; diff --git a/lib/Alchemy/Phrasea/Helper/User/Edit.php b/lib/Alchemy/Phrasea/Helper/User/Edit.php index ca033cf0ac..04ff4d517c 100644 --- a/lib/Alchemy/Phrasea/Helper/User/Edit.php +++ b/lib/Alchemy/Phrasea/Helper/User/Edit.php @@ -18,11 +18,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Edit extends \Alchemy\Phrasea\Helper\Helper { /** diff --git a/lib/Alchemy/Phrasea/Helper/User/Manage.php b/lib/Alchemy/Phrasea/Helper/User/Manage.php index feb7d54a4d..801269aade 100644 --- a/lib/Alchemy/Phrasea/Helper/User/Manage.php +++ b/lib/Alchemy/Phrasea/Helper/User/Manage.php @@ -17,11 +17,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailRequestPasswordSetup; use Alchemy\Phrasea\Notification\Mail\MailRequestEmailConfirmation; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Manage extends Helper { /** diff --git a/lib/Alchemy/Phrasea/Helper/WorkZone.php b/lib/Alchemy/Phrasea/Helper/WorkZone.php index dd7f4765b8..29d3b3b5ee 100644 --- a/lib/Alchemy/Phrasea/Helper/WorkZone.php +++ b/lib/Alchemy/Phrasea/Helper/WorkZone.php @@ -14,15 +14,6 @@ namespace Alchemy\Phrasea\Helper; use Doctrine\Common\Collections\ArrayCollection; use Alchemy\Phrasea\Model\Entities\Basket as BasketEntity; -/** - * - * WorkZone provides methods for working with the working zone of Phraseanet - * Production. This zones handles Non-Archived baskets, stories and Validation - * people are waiting from me. - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class WorkZone extends Helper { const BASKETS = 'baskets'; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Audio.php b/lib/Alchemy/Phrasea/Media/Subdef/Audio.php index af0a6de749..4e53c136c2 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Audio.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Audio.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef; -/** - * Audio Subdef - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Audio extends Provider { const OPTION_AUDIOBITRATE = 'audiobitrate'; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/FlexPaper.php b/lib/Alchemy/Phrasea/Media/Subdef/FlexPaper.php index 4550f67b48..30d8830057 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/FlexPaper.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/FlexPaper.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef; -/** - * FlexPaper Subdef - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class FlexPaper extends Provider { protected $options = []; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Gif.php b/lib/Alchemy/Phrasea/Media/Subdef/Gif.php index 66df95867d..1c04c0ff13 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Gif.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Gif.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef; -/** - * Gif Subdef - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Gif extends Image { const OPTION_DELAY = 'delay'; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Image.php b/lib/Alchemy/Phrasea/Media/Subdef/Image.php index eda3ebab9b..395f9069a5 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Image.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Image.php @@ -13,12 +13,6 @@ namespace Alchemy\Phrasea\Media\Subdef; use MediaAlchemyst\Specification\Image as ImageSpecification; -/** - * Image Subdef - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Image extends Provider { const OPTION_SIZE = 'size'; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Boolean.php b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Boolean.php index 8685463d71..3329674e34 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Boolean.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Boolean.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef\OptionType; -/** - * Boolean Subdef Option - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Boolean implements OptionType { protected $name; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Enum.php b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Enum.php index cb145ebd1e..3f2943135f 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Enum.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Enum.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef\OptionType; -/** - * Enum Subdef Option - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Enum implements OptionType { protected $name; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Multi.php b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Multi.php index 344acdf02e..127cd58dfb 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Multi.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Multi.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef\OptionType; -/** - * Multi Subdef Option - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Multi implements OptionType { protected $name; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/OptionType.php b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/OptionType.php index 8843d9e5d2..9451743f8c 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/OptionType.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/OptionType.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef\OptionType; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface OptionType { const TYPE_RANGE = 'Range'; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Range.php b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Range.php index ecd78f8728..1634be81ca 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Range.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/OptionType/Range.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef\OptionType; -/** - * Range Subdef Option - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Range implements OptionType { protected $name; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Provider.php b/lib/Alchemy/Phrasea/Media/Subdef/Provider.php index 4a000aef59..7051d154aa 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Provider.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Provider.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class Provider implements Subdef { protected $options = []; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Subdef.php b/lib/Alchemy/Phrasea/Media/Subdef/Subdef.php index afcc2619f2..e5dd870525 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Subdef.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Subdef.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface Subdef { const TYPE_IMAGE = 'image'; diff --git a/lib/Alchemy/Phrasea/Media/Subdef/Video.php b/lib/Alchemy/Phrasea/Media/Subdef/Video.php index 07a12fdd56..61ead613cd 100644 --- a/lib/Alchemy/Phrasea/Media/Subdef/Video.php +++ b/lib/Alchemy/Phrasea/Media/Subdef/Video.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Subdef; -/** - * Video Subdef - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Video extends Audio { const OPTION_SIZE = 'size'; diff --git a/lib/Alchemy/Phrasea/Media/Type/Audio.php b/lib/Alchemy/Phrasea/Media/Type/Audio.php index d6431e34f5..a558f1f669 100644 --- a/lib/Alchemy/Phrasea/Media/Type/Audio.php +++ b/lib/Alchemy/Phrasea/Media/Type/Audio.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Type; -/** - * Phrasea Audio Media Type - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Audio implements Type { diff --git a/lib/Alchemy/Phrasea/Media/Type/Document.php b/lib/Alchemy/Phrasea/Media/Type/Document.php index 1f7ee7cd59..9f191e6d88 100644 --- a/lib/Alchemy/Phrasea/Media/Type/Document.php +++ b/lib/Alchemy/Phrasea/Media/Type/Document.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Type; -/** - * Phrasea Document Media Type - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Document implements Type { diff --git a/lib/Alchemy/Phrasea/Media/Type/Flash.php b/lib/Alchemy/Phrasea/Media/Type/Flash.php index 488c480422..2d3952cb83 100644 --- a/lib/Alchemy/Phrasea/Media/Type/Flash.php +++ b/lib/Alchemy/Phrasea/Media/Type/Flash.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Type; -/** - * Phrasea Flash Media Type - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Flash implements Type { diff --git a/lib/Alchemy/Phrasea/Media/Type/Image.php b/lib/Alchemy/Phrasea/Media/Type/Image.php index 8b53a0e459..facd4134c3 100644 --- a/lib/Alchemy/Phrasea/Media/Type/Image.php +++ b/lib/Alchemy/Phrasea/Media/Type/Image.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Type; -/** - * Phrasea Image Media Type - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Image implements Type { diff --git a/lib/Alchemy/Phrasea/Media/Type/Type.php b/lib/Alchemy/Phrasea/Media/Type/Type.php index bfb9323f93..6e8178ac68 100644 --- a/lib/Alchemy/Phrasea/Media/Type/Type.php +++ b/lib/Alchemy/Phrasea/Media/Type/Type.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Type; -/** - * Phrasea Type Media Type - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface Type { const TYPE_AUDIO = 'audio'; diff --git a/lib/Alchemy/Phrasea/Media/Type/Video.php b/lib/Alchemy/Phrasea/Media/Type/Video.php index 385e864314..a94600dc73 100644 --- a/lib/Alchemy/Phrasea/Media/Type/Video.php +++ b/lib/Alchemy/Phrasea/Media/Type/Video.php @@ -11,12 +11,6 @@ namespace Alchemy\Phrasea\Media\Type; -/** - * Phrasea Video Media Type - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Video implements Type { diff --git a/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php b/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php index e40653eed7..e67d772b2f 100644 --- a/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php +++ b/lib/Alchemy/Phrasea/Model/Repositories/BasketRepository.php @@ -14,11 +14,6 @@ namespace Alchemy\Phrasea\Model\Repositories; use Alchemy\Phrasea\Model\Entities\Basket; use Doctrine\ORM\EntityRepository; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class BasketRepository extends EntityRepository { const MYBASKETS = 'my baskets'; diff --git a/lib/Alchemy/Phrasea/Model/Repositories/ValidationParticipantRepository.php b/lib/Alchemy/Phrasea/Model/Repositories/ValidationParticipantRepository.php index 90bb8e0ba8..513330d9d3 100644 --- a/lib/Alchemy/Phrasea/Model/Repositories/ValidationParticipantRepository.php +++ b/lib/Alchemy/Phrasea/Model/Repositories/ValidationParticipantRepository.php @@ -14,11 +14,6 @@ namespace Alchemy\Phrasea\Model\Repositories; use Doctrine\ORM\EntityRepository; use Doctrine\DBAL\Types\Type; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class ValidationParticipantRepository extends EntityRepository { diff --git a/lib/Alchemy/Phrasea/Model/Types/Binary.php b/lib/Alchemy/Phrasea/Model/Types/Binary.php index e4ee04261a..6717bad929 100644 --- a/lib/Alchemy/Phrasea/Model/Types/Binary.php +++ b/lib/Alchemy/Phrasea/Model/Types/Binary.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ - namespace Alchemy\Phrasea\Model\Types; use Doctrine\DBAL\Types\Type; diff --git a/lib/Alchemy/Phrasea/Model/Types/Blob.php b/lib/Alchemy/Phrasea/Model/Types/Blob.php index 4c3c265863..d8a6f15152 100644 --- a/lib/Alchemy/Phrasea/Model/Types/Blob.php +++ b/lib/Alchemy/Phrasea/Model/Types/Blob.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ - namespace Alchemy\Phrasea\Model\Types; use Doctrine\DBAL\Types\Type; diff --git a/lib/Alchemy/Phrasea/Model/Types/Enum.php b/lib/Alchemy/Phrasea/Model/Types/Enum.php index 0782b2febd..873eb19b90 100644 --- a/lib/Alchemy/Phrasea/Model/Types/Enum.php +++ b/lib/Alchemy/Phrasea/Model/Types/Enum.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ - namespace Alchemy\Phrasea\Model\Types; use Doctrine\DBAL\Types\Type; diff --git a/lib/Alchemy/Phrasea/Model/Types/LongBlob.php b/lib/Alchemy/Phrasea/Model/Types/LongBlob.php index 489ba404af..14a1cdc471 100644 --- a/lib/Alchemy/Phrasea/Model/Types/LongBlob.php +++ b/lib/Alchemy/Phrasea/Model/Types/LongBlob.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ - namespace Alchemy\Phrasea\Model\Types; use Doctrine\DBAL\Types\Type; diff --git a/lib/Alchemy/Phrasea/Model/Types/VarBinary.php b/lib/Alchemy/Phrasea/Model/Types/VarBinary.php index 5182c65919..21b55a14c3 100644 --- a/lib/Alchemy/Phrasea/Model/Types/VarBinary.php +++ b/lib/Alchemy/Phrasea/Model/Types/VarBinary.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ - namespace Alchemy\Phrasea\Model\Types; use Doctrine\DBAL\Types\Type; diff --git a/lib/Alchemy/Phrasea/Out/Module/PDF.php b/lib/Alchemy/Phrasea/Out/Module/PDF.php index 6f1b811801..ee901ed90b 100644 --- a/lib/Alchemy/Phrasea/Out/Module/PDF.php +++ b/lib/Alchemy/Phrasea/Out/Module/PDF.php @@ -14,12 +14,6 @@ namespace Alchemy\Phrasea\Out\Module; use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Out\Tool\PhraseaPDF; -/** - * Creates a PDF - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class PDF { protected $app; diff --git a/lib/Alchemy/Phrasea/Out/Tool/PhraseaPDF.php b/lib/Alchemy/Phrasea/Out/Tool/PhraseaPDF.php index 3f390d91b7..5c52b6f793 100644 --- a/lib/Alchemy/Phrasea/Out/Tool/PhraseaPDF.php +++ b/lib/Alchemy/Phrasea/Out/Tool/PhraseaPDF.php @@ -11,11 +11,6 @@ namespace Alchemy\Phrasea\Out\Tool; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class PhraseaPDF extends \TCPDF { const FONT = 'freesans'; diff --git a/lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php b/lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php index e0f08457e2..02098f7c97 100644 --- a/lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php +++ b/lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngineQueryParser.php @@ -13,12 +13,6 @@ namespace Alchemy\Phrasea\SearchEngine\Phrasea; use Alchemy\Phrasea\Application; -/** - * - * @package searchEngine - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class PhraseaEngineQueryParser { public $ops = [ diff --git a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/ControlProviderInterface.php b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/ControlProviderInterface.php index 822cfe3193..9a013324c7 100644 --- a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/ControlProviderInterface.php +++ b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/ControlProviderInterface.php @@ -11,14 +11,6 @@ namespace Alchemy\Phrasea\Vocabulary\ControlProvider; -/** - * ControlProvider Interface - * - * This interface should be used to interconnect vocabularies and metadatas - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface ControlProviderInterface { diff --git a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php index e4a6f494e4..dbe7bc23a8 100644 --- a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php +++ b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php @@ -15,12 +15,6 @@ use Alchemy\Phrasea\Application; use Doctrine\Common\Collections\ArrayCollection; use Alchemy\Phrasea\Vocabulary\Term; -/** - * User Provider - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class UserProvider implements ControlProviderInterface { diff --git a/lib/Alchemy/Phrasea/Vocabulary/Controller.php b/lib/Alchemy/Phrasea/Vocabulary/Controller.php index 4e80871782..4d41d231e4 100644 --- a/lib/Alchemy/Phrasea/Vocabulary/Controller.php +++ b/lib/Alchemy/Phrasea/Vocabulary/Controller.php @@ -14,14 +14,6 @@ namespace Alchemy\Phrasea\Vocabulary; use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Vocabulary\ControlProvider\ControlProviderInterface; -/** - * Vocabulary Controller - * - * Various methods fro controlling vocabularies inside Phraseanet - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Controller { /** diff --git a/lib/Alchemy/Phrasea/Vocabulary/Term.php b/lib/Alchemy/Phrasea/Vocabulary/Term.php index 915e845c77..c4306a9276 100644 --- a/lib/Alchemy/Phrasea/Vocabulary/Term.php +++ b/lib/Alchemy/Phrasea/Vocabulary/Term.php @@ -11,15 +11,6 @@ namespace Alchemy\Phrasea\Vocabulary; -/** - * Vocabulary Term - * - * A Term of vocabulary has a Value, and optionnal context, ControllerProvider - * and an Id - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class Term { /** diff --git a/lib/classes/ACL.php b/lib/classes/ACL.php index f3510e3f8e..2a52cf9e7a 100644 --- a/lib/classes/ACL.php +++ b/lib/classes/ACL.php @@ -11,12 +11,6 @@ use Alchemy\Phrasea\Application; -/** - * Access Control List class - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class ACL implements cache_cacheableInterface { /** diff --git a/lib/classes/API/OAuth2/Account.php b/lib/classes/API/OAuth2/Account.php index 48bcd16a5e..415c4d39da 100644 --- a/lib/classes/API/OAuth2/Account.php +++ b/lib/classes/API/OAuth2/Account.php @@ -12,16 +12,6 @@ use Alchemy\Phrasea\Application; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Account { /** diff --git a/lib/classes/API/OAuth2/Adapter.php b/lib/classes/API/OAuth2/Adapter.php index 86b0618d5c..28885fff1c 100644 --- a/lib/classes/API/OAuth2/Adapter.php +++ b/lib/classes/API/OAuth2/Adapter.php @@ -15,17 +15,6 @@ use Alchemy\Phrasea\Authentication\Exception\AccountLockedException; use Alchemy\Phrasea\Authentication\Exception\RequireCaptchaException; use Symfony\Component\HttpFoundation\Request; -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Adapter extends OAuth2 { /** diff --git a/lib/classes/API/OAuth2/Application.php b/lib/classes/API/OAuth2/Application.php index 32b49e65e3..639b7e6d9d 100644 --- a/lib/classes/API/OAuth2/Application.php +++ b/lib/classes/API/OAuth2/Application.php @@ -12,16 +12,6 @@ use Alchemy\Phrasea\Application; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Application { /** diff --git a/lib/classes/API/OAuth2/AuthCode.php b/lib/classes/API/OAuth2/AuthCode.php index c5dcc6dba5..0942692691 100644 --- a/lib/classes/API/OAuth2/AuthCode.php +++ b/lib/classes/API/OAuth2/AuthCode.php @@ -12,16 +12,6 @@ use Alchemy\Phrasea\Application; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_AuthCode { protected $app; diff --git a/lib/classes/API/OAuth2/Exception/Exception.php b/lib/classes/API/OAuth2/Exception/Exception.php index 607df0ff3c..a6309fa4b6 100644 --- a/lib/classes/API/OAuth2/Exception/Exception.php +++ b/lib/classes/API/OAuth2/Exception/Exception.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Exception extends Exception implements API_OAuth2_Exception_Interface { /** diff --git a/lib/classes/API/OAuth2/Exception/Interface.php b/lib/classes/API/OAuth2/Exception/Interface.php index 3443a2e353..91c5dd3868 100644 --- a/lib/classes/API/OAuth2/Exception/Interface.php +++ b/lib/classes/API/OAuth2/Exception/Interface.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface API_OAuth2_Exception_Interface { diff --git a/lib/classes/API/OAuth2/Exception/Redirect.php b/lib/classes/API/OAuth2/Exception/Redirect.php index 76aaf22d45..54aade8372 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect.php +++ b/lib/classes/API/OAuth2/Exception/Redirect.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect extends API_OAuth2_Exception_Exception { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/AccessDenied.php b/lib/classes/API/OAuth2/Exception/Redirect/AccessDenied.php index cec82ced35..ba9c9864f2 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/AccessDenied.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/AccessDenied.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_AccessDenied extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/InvalidClient.php b/lib/classes/API/OAuth2/Exception/Redirect/InvalidClient.php index 4fd0a1c305..75d9e4d4e9 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/InvalidClient.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/InvalidClient.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_InvalidClient extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/InvalidRequest.php b/lib/classes/API/OAuth2/Exception/Redirect/InvalidRequest.php index 0feecf6370..36e16b3904 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/InvalidRequest.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/InvalidRequest.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_InvalidRequest extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/InvalidScope.php b/lib/classes/API/OAuth2/Exception/Redirect/InvalidScope.php index 7394b98dc7..8aef5c0398 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/InvalidScope.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/InvalidScope.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_InvalidScope extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/ServerError.php b/lib/classes/API/OAuth2/Exception/Redirect/ServerError.php index d8d025fe88..6f991e648b 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/ServerError.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/ServerError.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_ServerError extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/TemporaryUnavailable.php b/lib/classes/API/OAuth2/Exception/Redirect/TemporaryUnavailable.php index ab885b4442..1013360660 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/TemporaryUnavailable.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/TemporaryUnavailable.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_TemporaryUnavailable extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/UnauthorizedClient.php b/lib/classes/API/OAuth2/Exception/Redirect/UnauthorizedClient.php index 6fce285c93..b217973912 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/UnauthorizedClient.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/UnauthorizedClient.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_UnauthorizedClient extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/Redirect/UnsupportedResponseType.php b/lib/classes/API/OAuth2/Exception/Redirect/UnsupportedResponseType.php index 8db921e8ed..1f02b9de67 100644 --- a/lib/classes/API/OAuth2/Exception/Redirect/UnsupportedResponseType.php +++ b/lib/classes/API/OAuth2/Exception/Redirect/UnsupportedResponseType.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_Redirect_UnsupportedResponseType extends API_OAuth2_Exception_Redirect { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate.php index b4da807ce7..a1cf84e116 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate extends API_OAuth2_Exception_Exception { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/ExpiredToken.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/ExpiredToken.php index f6a5993a67..1db54578bb 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/ExpiredToken.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/ExpiredToken.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_ExpiredToken extends API_OAuth2_Exception_WWWAuthenticate_Type_Unauthorized { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InsufficientScope.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InsufficientScope.php index 49cadc3478..6e3534c9b3 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InsufficientScope.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InsufficientScope.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_InsufficientScope extends API_OAuth2_Exception_WWWAuthenticate_Type_Forbidden { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidClient.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidClient.php index f7670f7fa5..5028192059 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidClient.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidClient.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_InvalidClient extends API_OAuth2_Exception_WWWAuthenticate_Type_BadRequest { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidRequest.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidRequest.php index 13d8bcd13f..b8090c3547 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidRequest.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidRequest.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_InvalidRequest extends API_OAuth2_Exception_WWWAuthenticate_Type_BadRequest { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidToken.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidToken.php index 69e3b26430..5ad8b80a43 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidToken.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/InvalidToken.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_InvalidToken extends API_OAuth2_Exception_WWWAuthenticate_Type_Unauthorized { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/BadRequest.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/BadRequest.php index 6aa79e89d6..c78a9de3db 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/BadRequest.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/BadRequest.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_Type_BadRequest extends API_OAuth2_Exception_WWWAuthenticate { /** diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Forbidden.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Forbidden.php index 4f19a21646..8eac04d745 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Forbidden.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Forbidden.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_Type_Forbidden extends API_OAuth2_Exception_WWWAuthenticate { diff --git a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Unauthorized.php b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Unauthorized.php index 35078ed969..29119ab387 100644 --- a/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Unauthorized.php +++ b/lib/classes/API/OAuth2/Exception/WWWAuthenticate/Type/Unauthorized.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Exception_WWWAuthenticate_Type_Unauthorized extends API_OAuth2_Exception_WWWAuthenticate { /** diff --git a/lib/classes/API/OAuth2/Form/DevAppDesktop.php b/lib/classes/API/OAuth2/Form/DevAppDesktop.php index bad53804cd..7c72391da9 100644 --- a/lib/classes/API/OAuth2/Form/DevAppDesktop.php +++ b/lib/classes/API/OAuth2/Form/DevAppDesktop.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Validator\Constraints; diff --git a/lib/classes/API/OAuth2/Form/DevAppInternet.php b/lib/classes/API/OAuth2/Form/DevAppInternet.php index 0720f6dcc0..b16fe9aa0c 100644 --- a/lib/classes/API/OAuth2/Form/DevAppInternet.php +++ b/lib/classes/API/OAuth2/Form/DevAppInternet.php @@ -9,17 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Validator\Mapping\ClassMetadata; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\Validator\Constraints; diff --git a/lib/classes/API/OAuth2/RefreshToken.php b/lib/classes/API/OAuth2/RefreshToken.php index 446ff34d4f..49142608be 100644 --- a/lib/classes/API/OAuth2/RefreshToken.php +++ b/lib/classes/API/OAuth2/RefreshToken.php @@ -11,16 +11,6 @@ use Alchemy\Phrasea\Application; -/** - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_RefreshToken { protected $app; diff --git a/lib/classes/API/OAuth2/Token.php b/lib/classes/API/OAuth2/Token.php index e96763472d..56a8e54028 100644 --- a/lib/classes/API/OAuth2/Token.php +++ b/lib/classes/API/OAuth2/Token.php @@ -12,16 +12,6 @@ use Alchemy\Phrasea\Application; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; -/** - * - * @package OAuth2 Connector - * - * @see http://oauth.net/2/ - * @uses http://code.google.com/p/oauth2-php/ - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class API_OAuth2_Token { /** diff --git a/lib/classes/API/V1/Abstract.php b/lib/classes/API/V1/Abstract.php index 5e6f1281d4..124d6b6758 100644 --- a/lib/classes/API/V1/Abstract.php +++ b/lib/classes/API/V1/Abstract.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package APIv1 - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class API_V1_Abstract implements API_V1_Interface { diff --git a/lib/classes/API/V1/Interface.php b/lib/classes/API/V1/Interface.php index 08671ca907..abc43be0b2 100644 --- a/lib/classes/API/V1/Interface.php +++ b/lib/classes/API/V1/Interface.php @@ -13,11 +13,6 @@ use Alchemy\Phrasea\Model\Entities\Basket; use Symfony\Component\HttpFoundation\Request; use Silex\Application; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface API_V1_Interface { diff --git a/lib/classes/API/V1/Log.php b/lib/classes/API/V1/Log.php index 080b9af696..db99896bdc 100644 --- a/lib/classes/API/V1/Log.php +++ b/lib/classes/API/V1/Log.php @@ -1,10 +1,5 @@ get_connection(); diff --git a/lib/classes/eventsmanager/event/test.php b/lib/classes/eventsmanager/event/test.php index 60d8d94956..fb8066511a 100644 --- a/lib/classes/eventsmanager/event/test.php +++ b/lib/classes/eventsmanager/event/test.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_event_test extends eventsmanager_eventAbstract { /** diff --git a/lib/classes/eventsmanager/notify/autoregister.php b/lib/classes/eventsmanager/notify/autoregister.php index 5bc09600ee..9a106ad7cc 100644 --- a/lib/classes/eventsmanager/notify/autoregister.php +++ b/lib/classes/eventsmanager/notify/autoregister.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoSomebodyAutoregistered; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_autoregister extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/bridgeuploadfail.php b/lib/classes/eventsmanager/notify/bridgeuploadfail.php index be93dbe133..e197c74c0c 100644 --- a/lib/classes/eventsmanager/notify/bridgeuploadfail.php +++ b/lib/classes/eventsmanager/notify/bridgeuploadfail.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoBridgeUploadFailed; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_bridgeuploadfail extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/downloadmailfail.php b/lib/classes/eventsmanager/notify/downloadmailfail.php index a94448c3c1..9f29323c65 100644 --- a/lib/classes/eventsmanager/notify/downloadmailfail.php +++ b/lib/classes/eventsmanager/notify/downloadmailfail.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_downloadmailfail extends eventsmanager_notifyAbstract { const MAIL_NO_VALID = 1; diff --git a/lib/classes/eventsmanager/notify/feed.php b/lib/classes/eventsmanager/notify/feed.php index 5a1ace4f22..5fb7ee6a6a 100644 --- a/lib/classes/eventsmanager/notify/feed.php +++ b/lib/classes/eventsmanager/notify/feed.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoNewPublication; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_feed extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/order.php b/lib/classes/eventsmanager/notify/order.php index d4f898d8e0..5ef4fa6c6c 100644 --- a/lib/classes/eventsmanager/notify/order.php +++ b/lib/classes/eventsmanager/notify/order.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoNewOrder; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_order extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/orderdeliver.php b/lib/classes/eventsmanager/notify/orderdeliver.php index 4b72f18fcd..8d84a6baa7 100644 --- a/lib/classes/eventsmanager/notify/orderdeliver.php +++ b/lib/classes/eventsmanager/notify/orderdeliver.php @@ -14,12 +14,6 @@ use Alchemy\Phrasea\Notification\Emitter; use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoOrderDelivered; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_orderdeliver extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/ordernotdelivered.php b/lib/classes/eventsmanager/notify/ordernotdelivered.php index d046f1afb0..fb0766b3db 100644 --- a/lib/classes/eventsmanager/notify/ordernotdelivered.php +++ b/lib/classes/eventsmanager/notify/ordernotdelivered.php @@ -14,11 +14,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Emitter; use Alchemy\Phrasea\Notification\Mail\MailInfoOrderCancelled; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_ordernotdelivered extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/push.php b/lib/classes/eventsmanager/notify/push.php index 61fb451be2..56c8c98bca 100644 --- a/lib/classes/eventsmanager/notify/push.php +++ b/lib/classes/eventsmanager/notify/push.php @@ -13,12 +13,6 @@ use Alchemy\Phrasea\Notification\Emitter; use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoPushReceived; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_push extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/register.php b/lib/classes/eventsmanager/notify/register.php index b2cebb6bff..29f1bff88e 100644 --- a/lib/classes/eventsmanager/notify/register.php +++ b/lib/classes/eventsmanager/notify/register.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoUserRegistered; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_register extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/eventsmanager/notify/uploadquarantine.php b/lib/classes/eventsmanager/notify/uploadquarantine.php index 3d49b996b6..48686469ee 100644 --- a/lib/classes/eventsmanager/notify/uploadquarantine.php +++ b/lib/classes/eventsmanager/notify/uploadquarantine.php @@ -14,12 +14,6 @@ use Alchemy\Phrasea\Model\Entities\LazaretFile; use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Mail\MailInfoRecordQuarantined; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class eventsmanager_notify_uploadquarantine extends eventsmanager_notifyAbstract { /** diff --git a/lib/classes/http/query.php b/lib/classes/http/query.php index 64c36e0054..d130637ce5 100644 --- a/lib/classes/http/query.php +++ b/lib/classes/http/query.php @@ -9,11 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class http_query { diff --git a/lib/classes/media/Permalink/Adapter.php b/lib/classes/media/Permalink/Adapter.php index c07a0aca88..111829d2f5 100644 --- a/lib/classes/media/Permalink/Adapter.php +++ b/lib/classes/media/Permalink/Adapter.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Exception\RuntimeException; -/** - * - * @package subdefs - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class media_Permalink_Adapter implements media_Permalink_Interface, cache_cacheableInterface { /** diff --git a/lib/classes/media/Permalink/Interface.php b/lib/classes/media/Permalink/Interface.php index ef81c2fcbd..2b76c26d2d 100644 --- a/lib/classes/media/Permalink/Interface.php +++ b/lib/classes/media/Permalink/Interface.php @@ -11,12 +11,6 @@ use Alchemy\Phrasea\Application; -/** - * - * @package subdefs - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface media_Permalink_Interface { diff --git a/lib/classes/media/abstract.php b/lib/classes/media/abstract.php index 165a2d45b2..7061e83079 100644 --- a/lib/classes/media/abstract.php +++ b/lib/classes/media/abstract.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package subdefs - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class media_abstract { /** diff --git a/lib/classes/media/adapter.php b/lib/classes/media/adapter.php index 74276c30e6..13e1aac282 100644 --- a/lib/classes/media/adapter.php +++ b/lib/classes/media/adapter.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package subdefs - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class media_adapter extends media_abstract { diff --git a/lib/classes/media/subdef.php b/lib/classes/media/subdef.php index c7598a6c50..cac5fb3532 100644 --- a/lib/classes/media/subdef.php +++ b/lib/classes/media/subdef.php @@ -14,12 +14,6 @@ use MediaAlchemyst\Alchemyst; use MediaVorus\MediaVorus; use MediaVorus\Media\MediaInterface; -/** - * - * @package subdefs - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class media_subdef extends media_abstract implements cache_cacheableInterface { protected $app; diff --git a/lib/classes/module/console/aboutAuthors.php b/lib/classes/module/console/aboutAuthors.php index 064ce85aa1..396f7dae19 100644 --- a/lib/classes/module/console/aboutAuthors.php +++ b/lib/classes/module/console/aboutAuthors.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * @todo write tests - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Alchemy\Phrasea\Command\Command; diff --git a/lib/classes/module/console/aboutLicense.php b/lib/classes/module/console/aboutLicense.php index 89310c7997..1b0f2dd5b2 100644 --- a/lib/classes/module/console/aboutLicense.php +++ b/lib/classes/module/console/aboutLicense.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * @todo write tests - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Alchemy\Phrasea\Command\Command; diff --git a/lib/classes/module/console/checkExtension.php b/lib/classes/module/console/checkExtension.php index 81864e6481..c9ac4c9e44 100644 --- a/lib/classes/module/console/checkExtension.php +++ b/lib/classes/module/console/checkExtension.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Alchemy\Phrasea\SearchEngine\Phrasea\PhraseaEngineQueryParser; diff --git a/lib/classes/module/console/fieldsDelete.php b/lib/classes/module/console/fieldsDelete.php index f2f7f9971d..ca39cdfa49 100644 --- a/lib/classes/module/console/fieldsDelete.php +++ b/lib/classes/module/console/fieldsDelete.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; diff --git a/lib/classes/module/console/fieldsList.php b/lib/classes/module/console/fieldsList.php index 1096e8a180..66fb75b247 100644 --- a/lib/classes/module/console/fieldsList.php +++ b/lib/classes/module/console/fieldsList.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Alchemy\Phrasea\Command\Command; diff --git a/lib/classes/module/console/fieldsMerge.php b/lib/classes/module/console/fieldsMerge.php index 5296cdf672..a4ed108ac0 100644 --- a/lib/classes/module/console/fieldsMerge.php +++ b/lib/classes/module/console/fieldsMerge.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/lib/classes/module/console/fieldsRename.php b/lib/classes/module/console/fieldsRename.php index e2b8159959..3c565f9e21 100644 --- a/lib/classes/module/console/fieldsRename.php +++ b/lib/classes/module/console/fieldsRename.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; diff --git a/lib/classes/module/console/sphinxGenerateSuggestion.php b/lib/classes/module/console/sphinxGenerateSuggestion.php index b9a4fad4f6..497646119a 100644 --- a/lib/classes/module/console/sphinxGenerateSuggestion.php +++ b/lib/classes/module/console/sphinxGenerateSuggestion.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Console\Input\InputInterface; diff --git a/lib/classes/module/console/systemBackupDB.php b/lib/classes/module/console/systemBackupDB.php index b7401b5f75..8094c26963 100644 --- a/lib/classes/module/console/systemBackupDB.php +++ b/lib/classes/module/console/systemBackupDB.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; diff --git a/lib/classes/module/console/systemClearCache.php b/lib/classes/module/console/systemClearCache.php index 7cb8489bf1..d1944a7e41 100644 --- a/lib/classes/module/console/systemClearCache.php +++ b/lib/classes/module/console/systemClearCache.php @@ -9,11 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Finder\Finder; use Symfony\Component\Filesystem\Filesystem; diff --git a/lib/classes/module/console/systemExport.php b/lib/classes/module/console/systemExport.php index 95873dda68..9a95d658ba 100644 --- a/lib/classes/module/console/systemExport.php +++ b/lib/classes/module/console/systemExport.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/lib/classes/module/console/systemMailCheck.php b/lib/classes/module/console/systemMailCheck.php index 3059308c20..28d41c58e1 100644 --- a/lib/classes/module/console/systemMailCheck.php +++ b/lib/classes/module/console/systemMailCheck.php @@ -9,13 +9,6 @@ * file that was distributed with this source code. */ -/** - * @todo write tests - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Alchemy\Phrasea\Setup\Version\MailChecker; use Symfony\Component\Console\Input\InputInterface; diff --git a/lib/classes/module/console/systemTemplateGenerator.php b/lib/classes/module/console/systemTemplateGenerator.php index fc5f5a0f1b..08a1289055 100644 --- a/lib/classes/module/console/systemTemplateGenerator.php +++ b/lib/classes/module/console/systemTemplateGenerator.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Finder\Finder; use Symfony\Component\HttpFoundation\Request; diff --git a/lib/classes/module/console/systemUpgrade.php b/lib/classes/module/console/systemUpgrade.php index d4ba3a18df..c9843d9098 100644 --- a/lib/classes/module/console/systemUpgrade.php +++ b/lib/classes/module/console/systemUpgrade.php @@ -9,13 +9,6 @@ * file that was distributed with this source code. */ -/** - * @todo write tests - * - * @package KonsoleKomander - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ use Alchemy\Phrasea\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/lib/classes/patch/380alpha2a.php b/lib/classes/patch/380alpha2a.php index e17c44425d..bf49bf87c6 100644 --- a/lib/classes/patch/380alpha2a.php +++ b/lib/classes/patch/380alpha2a.php @@ -11,11 +11,6 @@ use Alchemy\Phrasea\Application; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class patch_380alpha2a implements patchInterface { /** @var string */ diff --git a/lib/classes/record/Interface.php b/lib/classes/record/Interface.php index d9f4300c04..aaea64c17b 100644 --- a/lib/classes/record/Interface.php +++ b/lib/classes/record/Interface.php @@ -14,11 +14,6 @@ use Alchemy\Phrasea\SearchEngine\SearchEngineInterface; use Doctrine\ORM\EntityManager; use MediaVorus\Media\MediaInterface; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface record_Interface { diff --git a/lib/classes/record/adapter.php b/lib/classes/record/adapter.php index 2776459bc6..15eb0f3874 100644 --- a/lib/classes/record/adapter.php +++ b/lib/classes/record/adapter.php @@ -23,12 +23,6 @@ use Monolog\Logger; use Symfony\Component\HttpFoundation\File\File as SymfoFile; use Symfony\Component\Filesystem\Filesystem; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class record_adapter implements record_Interface, cache_cacheableInterface { /** diff --git a/lib/classes/record/exportElement.php b/lib/classes/record/exportElement.php index 962a1d469c..7f99b602f3 100644 --- a/lib/classes/record/exportElement.php +++ b/lib/classes/record/exportElement.php @@ -11,12 +11,6 @@ use Alchemy\Phrasea\Application; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class record_exportElement extends record_adapter { /** diff --git a/lib/classes/record/orderElement.php b/lib/classes/record/orderElement.php index 6251e41b04..cf54fa226b 100644 --- a/lib/classes/record/orderElement.php +++ b/lib/classes/record/orderElement.php @@ -11,12 +11,6 @@ use Alchemy\Phrasea\Application; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class record_orderElement extends record_adapter { /** diff --git a/lib/classes/record/preview.php b/lib/classes/record/preview.php index b3213de1c2..cf5defa5dc 100644 --- a/lib/classes/record/preview.php +++ b/lib/classes/record/preview.php @@ -14,12 +14,6 @@ use Alchemy\Phrasea\Model\Entities\Basket; use Alchemy\Phrasea\Model\Entities\BasketElement; use Alchemy\Phrasea\SearchEngine\SearchEngineInterface; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class record_preview extends record_adapter { /** diff --git a/lib/classes/recordutils/audio.php b/lib/classes/recordutils/audio.php index 92fb9eb0c2..b7b2514bbb 100644 --- a/lib/classes/recordutils/audio.php +++ b/lib/classes/recordutils/audio.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class recordutils_audio extends recordutils { diff --git a/lib/classes/recordutils/document.php b/lib/classes/recordutils/document.php index a09f273011..8ccdc49149 100644 --- a/lib/classes/recordutils/document.php +++ b/lib/classes/recordutils/document.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class recordutils_document extends recordutils { diff --git a/lib/classes/recordutils/map.php b/lib/classes/recordutils/map.php index 46f45b4aec..89363d1a1e 100644 --- a/lib/classes/recordutils/map.php +++ b/lib/classes/recordutils/map.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class recordutils_map extends recordutils { diff --git a/lib/classes/recordutils/video.php b/lib/classes/recordutils/video.php index f81f1a145a..925844e290 100644 --- a/lib/classes/recordutils/video.php +++ b/lib/classes/recordutils/video.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class recordutils_video extends recordutils { diff --git a/lib/classes/registry.php b/lib/classes/registry.php index 478f42c93d..8b1126f73b 100644 --- a/lib/classes/registry.php +++ b/lib/classes/registry.php @@ -12,11 +12,6 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Cache\ArrayCache; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class registry implements registryInterface { /** diff --git a/lib/classes/registryInterface.php b/lib/classes/registryInterface.php index 7550267183..21e2f101c0 100644 --- a/lib/classes/registryInterface.php +++ b/lib/classes/registryInterface.php @@ -9,11 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ interface registryInterface { diff --git a/lib/classes/set/abstract.php b/lib/classes/set/abstract.php index 44e804c23c..a2246f29c0 100644 --- a/lib/classes/set/abstract.php +++ b/lib/classes/set/abstract.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class set_abstract implements IteratorAggregate { /** diff --git a/lib/classes/set/export.php b/lib/classes/set/export.php index 86e15ce8b0..4040d07b6b 100644 --- a/lib/classes/set/export.php +++ b/lib/classes/set/export.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Application; use Symfony\Component\Filesystem\Filesystem; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class set_export extends set_abstract { protected $app; diff --git a/lib/classes/set/selection.php b/lib/classes/set/selection.php index 0d05b435bf..ae078ea268 100644 --- a/lib/classes/set/selection.php +++ b/lib/classes/set/selection.php @@ -12,12 +12,6 @@ use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Model\Entities\Basket; -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class set_selection extends set_abstract { protected $app; diff --git a/lib/classes/setup.php b/lib/classes/setup.php index 083a9357fe..7ac5176ebf 100644 --- a/lib/classes/setup.php +++ b/lib/classes/setup.php @@ -12,16 +12,6 @@ use Alchemy\Phrasea\Application; use Symfony\Component\Process\PhpExecutableFinder; use Symfony\Component\Process\ExecutableFinder; -/** - * - * This file MUST NOT contains any default PHP function as - * mb_*, curl_*, bind_text_domain, _ - * - * This file is intended to be loaded on setup test - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class setup { public static function create_global_values(Application $app, $datas = []) diff --git a/lib/classes/system/server.php b/lib/classes/system/server.php index acbd85441a..438db19e35 100644 --- a/lib/classes/system/server.php +++ b/lib/classes/system/server.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class system_server { /** diff --git a/lib/classes/thesaurus/xpath.php b/lib/classes/thesaurus/xpath.php index 15c9020985..fe3a49c33c 100644 --- a/lib/classes/thesaurus/xpath.php +++ b/lib/classes/thesaurus/xpath.php @@ -9,11 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class thesaurus_xpath extends DOMXPath { /** diff --git a/lib/classes/unicode.php b/lib/classes/unicode.php index 4b53458fb8..5ee0d9edd5 100644 --- a/lib/classes/unicode.php +++ b/lib/classes/unicode.php @@ -9,11 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class unicode { const CONVERT_TO_LC = 'lc'; // lowercase diff --git a/lib/conf.d/PhraseaFixture/AbstractWZ.php b/lib/conf.d/PhraseaFixture/AbstractWZ.php index 37f3ac3d7b..5aa21cc300 100644 --- a/lib/conf.d/PhraseaFixture/AbstractWZ.php +++ b/lib/conf.d/PhraseaFixture/AbstractWZ.php @@ -13,11 +13,6 @@ namespace PhraseaFixture; use Doctrine\Common\DataFixtures\AbstractFixture; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class AbstractWZ extends AbstractFixture { protected $user; diff --git a/lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php b/lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php index f9426ad976..cfe482b7c0 100644 --- a/lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php +++ b/lib/conf.d/PhraseaFixture/Basket/LoadFiveBaskets.php @@ -15,11 +15,6 @@ use Alchemy\Phrasea\Model\Entities\Basket; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadFiveBaskets extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php b/lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php index b04d7b790c..019e24e566 100644 --- a/lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php +++ b/lib/conf.d/PhraseaFixture/Basket/LoadOneBasket.php @@ -15,11 +15,6 @@ use Alchemy\Phrasea\Model\Entities\Basket; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadOneBasket extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php b/lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php index 77df0977cb..16c128ef47 100644 --- a/lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php +++ b/lib/conf.d/PhraseaFixture/Basket/LoadOneBasketEnv.php @@ -19,11 +19,6 @@ use Doctrine\ORM\EntityManager; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadOneBasketEnv extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php b/lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php index a528d89d56..4f2983bf70 100644 --- a/lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php +++ b/lib/conf.d/PhraseaFixture/Lazaret/LoadOneFile.php @@ -16,11 +16,6 @@ use Alchemy\Phrasea\Model\Entities\LazaretSession; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadOneFile extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/Story/LoadOneStory.php b/lib/conf.d/PhraseaFixture/Story/LoadOneStory.php index e73acbcde3..c8615db09c 100644 --- a/lib/conf.d/PhraseaFixture/Story/LoadOneStory.php +++ b/lib/conf.d/PhraseaFixture/Story/LoadOneStory.php @@ -15,11 +15,6 @@ use Alchemy\Phrasea\Model\Entities\StoryWZ; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadOneStory extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php b/lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php index aa6085c85d..3b9c757a4e 100644 --- a/lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php +++ b/lib/conf.d/PhraseaFixture/UsrLists/ListAbstract.php @@ -14,11 +14,6 @@ namespace PhraseaFixture\UsrLists; use Alchemy\Phrasea\Model\Entities\UsrList; use Doctrine\Common\DataFixtures\AbstractFixture; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ abstract class ListAbstract extends AbstractFixture { protected $user; diff --git a/lib/conf.d/PhraseaFixture/UsrLists/UsrList.php b/lib/conf.d/PhraseaFixture/UsrLists/UsrList.php index 1b309f6944..f985296bb5 100644 --- a/lib/conf.d/PhraseaFixture/UsrLists/UsrList.php +++ b/lib/conf.d/PhraseaFixture/UsrLists/UsrList.php @@ -16,11 +16,6 @@ use Alchemy\Phrasea\Model\Entities\UsrListOwner as UsrListOwnerEntity; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class UsrList extends ListAbstract implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php b/lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php index 252851ddaa..a51e72cf3d 100644 --- a/lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php +++ b/lib/conf.d/PhraseaFixture/UsrLists/UsrListEntry.php @@ -9,12 +9,6 @@ * file that was distributed with this source code. */ -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ - namespace PhraseaFixture\UsrLists; use Alchemy\Phrasea\Model\Entities\UsrList as UsrListEntity; @@ -22,11 +16,6 @@ use Alchemy\Phrasea\Model\Entities\UsrListEntry as UsrListEntryEntity; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class UsrListEntry extends ListAbstract implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php b/lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php index a718c7b39f..79f2dead90 100644 --- a/lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php +++ b/lib/conf.d/PhraseaFixture/UsrLists/UsrListOwner.php @@ -16,11 +16,6 @@ use Alchemy\Phrasea\Model\Entities\StoryWZ; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class UsrListOwner extends ListAbstract implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php b/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php index feaa4a1c84..a9de5a783f 100644 --- a/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php +++ b/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadOneParticipant.php @@ -15,11 +15,6 @@ use Alchemy\Phrasea\Model\Entities\ValidationParticipant; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadOneParticipant extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php b/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php index 9ae0468fb6..6af7577cde 100644 --- a/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php +++ b/lib/conf.d/PhraseaFixture/ValidationParticipant/LoadParticipantWithSession.php @@ -16,11 +16,6 @@ use Alchemy\Phrasea\Model\Entities\ValidationSession; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadParticipantWithSession extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /** diff --git a/lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php b/lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php index f3c39ca89c..e3eb01221b 100644 --- a/lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php +++ b/lib/conf.d/PhraseaFixture/ValidationSession/LoadOneValidationSession.php @@ -15,11 +15,6 @@ use Alchemy\Phrasea\Model\Entities\ValidationSession as ValidationSessionEntity; use Doctrine\Common\DataFixtures\FixtureInterface; use Doctrine\Common\Persistence\ObjectManager; -/** - * - * @license http://opensource.org/licenses/gpl-3.0 GPLv3 - * @link www.phraseanet.com - */ class LoadOneValidationSession extends \PhraseaFixture\AbstractWZ implements FixtureInterface { /**