[task/code-sniffer] Remove the IN_PHPBB check side-effect from class files.

PHPBB3-11980
This commit is contained in:
Andreas Fischer 2013-10-30 13:05:28 +01:00
parent 6ac46ad469
commit 7aa8f6461f
192 changed files with 0 additions and 1537 deletions

View file

@ -9,14 +9,6 @@
namespace phpbb\auth; namespace phpbb\auth;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Permission/Auth class * Permission/Auth class
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider; namespace phpbb\auth\provider;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Apache authentication provider for phpBB3 * Apache authentication provider for phpBB3
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider; namespace phpbb\auth\provider;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Base authentication provider class that all other providers should implement * Base authentication provider class that all other providers should implement
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider; namespace phpbb\auth\provider;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Database authentication provider for phpBB3 * Database authentication provider for phpBB3
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider; namespace phpbb\auth\provider;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Database authentication provider for phpBB3 * Database authentication provider for phpBB3
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth; namespace phpbb\auth\provider\oauth;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use OAuth\Common\Consumer\Credentials; use OAuth\Common\Consumer\Credentials;
use OAuth\Common\Http\Uri\Uri; use OAuth\Common\Http\Uri\Uri;

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth\service; namespace phpbb\auth\provider\oauth\service;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Base OAuth abstract class that all OAuth services should implement * Base OAuth abstract class that all OAuth services should implement
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth\service; namespace phpbb\auth\provider\oauth\service;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Bitly OAuth service * Bitly OAuth service
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth\service; namespace phpbb\auth\provider\oauth\service;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* OAuth service exception class * OAuth service exception class
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth\service; namespace phpbb\auth\provider\oauth\service;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Facebook OAuth service * Facebook OAuth service
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth\service; namespace phpbb\auth\provider\oauth\service;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Google OAuth service * Google OAuth service
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth\service; namespace phpbb\auth\provider\oauth\service;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* OAuth service interface * OAuth service interface
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider\oauth; namespace phpbb\auth\provider\oauth;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use OAuth\OAuth1\Token\StdOAuth1Token; use OAuth\OAuth1\Token\StdOAuth1Token;
use OAuth\Common\Token\TokenInterface; use OAuth\Common\Token\TokenInterface;

View file

@ -9,14 +9,6 @@
namespace phpbb\auth\provider; namespace phpbb\auth\provider;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The interface authentication provider classes have to implement. * The interface authentication provider classes have to implement.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Base class for avatar drivers * Base class for avatar drivers
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Interface for avatar drivers * Interface for avatar drivers
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Handles avatars hosted at gravatar.com * Handles avatars hosted at gravatar.com
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Handles avatars selected from the board gallery * Handles avatars selected from the board gallery
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Handles avatars hosted remotely * Handles avatars hosted remotely
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar\driver; namespace phpbb\avatar\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Handles avatars uploaded to the board * Handles avatars uploaded to the board
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\avatar; namespace phpbb\avatar;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* @package avatar * @package avatar
*/ */

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM for APC * ACM for APC
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* @package acm * @package acm
*/ */

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* An interface that all cache drivers must implement * An interface that all cache drivers must implement
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM for eAccelerator * ACM for eAccelerator
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM File Based Caching * ACM File Based Caching
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (!defined('PHPBB_ACM_MEMCACHE_PORT')) if (!defined('PHPBB_ACM_MEMCACHE_PORT'))
{ {
define('PHPBB_ACM_MEMCACHE_PORT', 11211); define('PHPBB_ACM_MEMCACHE_PORT', 11211);

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM Abstract Memory Class * ACM Abstract Memory Class
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM Null Caching * ACM Null Caching
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (!defined('PHPBB_ACM_REDIS_PORT')) if (!defined('PHPBB_ACM_REDIS_PORT'))
{ {
define('PHPBB_ACM_REDIS_PORT', 6379); define('PHPBB_ACM_REDIS_PORT', 6379);

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM for WinCache * ACM for WinCache
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache\driver; namespace phpbb\cache\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* ACM for XCache * ACM for XCache
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb\cache; namespace phpbb\cache;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Class for grabbing/handling cached entries * Class for grabbing/handling cached entries
* @package acm * @package acm

View file

@ -9,14 +9,6 @@
namespace phpbb; namespace phpbb;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The class loader resolves class names to file system paths and loads them if * The class loader resolves class names to file system paths and loads them if
* necessary. * necessary.

View file

@ -9,14 +9,6 @@
namespace phpbb\config; namespace phpbb\config;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Configuration container class * Configuration container class
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\config; namespace phpbb\config;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Configuration container class * Configuration container class
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\config; namespace phpbb\config;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Manages configuration options with an arbitrary length value stored in a TEXT * Manages configuration options with an arbitrary length value stored in a TEXT
* column. In constrast to class \phpbb\config\db, values are never cached and * column. In constrast to class \phpbb\config\db, values are never cached and

View file

@ -9,14 +9,6 @@
namespace phpbb; namespace phpbb;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* phpbb_visibility * phpbb_visibility
* Handle fetching and setting the visibility for topics and posts * Handle fetching and setting the visibility for topics and posts

View file

@ -9,14 +9,6 @@
namespace phpbb\controller; namespace phpbb\controller;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Controller exception class * Controller exception class
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\controller; namespace phpbb\controller;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
/** /**

View file

@ -9,14 +9,6 @@
namespace phpbb\controller; namespace phpbb\controller;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\Routing\RouteCollection; use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Loader\YamlFileLoader; use Symfony\Component\Routing\Loader\YamlFileLoader;
use Symfony\Component\Config\FileLocator; use Symfony\Component\Config\FileLocator;

View file

@ -9,14 +9,6 @@
namespace phpbb\controller; namespace phpbb\controller;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface; use Symfony\Component\HttpKernel\Controller\ControllerResolverInterface;
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;

View file

@ -9,14 +9,6 @@
namespace phpbb\cron; namespace phpbb\cron;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Cron manager class. * Cron manager class.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task; namespace phpbb\cron\task;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Cron task base class. Provides sensible defaults for cron tasks * Cron task base class. Provides sensible defaults for cron tasks
* and partially implements cron task interface, making writing cron tasks easier. * and partially implements cron task interface, making writing cron tasks easier.

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Prune all forums cron task. * Prune all forums cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Prune one forum cron task. * Prune one forum cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Prune notifications cron task. * Prune notifications cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Queue cron task. Sends email and jabber messages queued by other scripts. * Queue cron task. Sends email and jabber messages queued by other scripts.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Tidy cache cron task. * Tidy cache cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Tidy database cron task. * Tidy database cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Cron task for cleaning plupload's temporary upload directory. * Cron task for cleaning plupload's temporary upload directory.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Tidy search cron task. * Tidy search cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Tidy sessions cron task. * Tidy sessions cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task\core; namespace phpbb\cron\task\core;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Tidy warnings cron task. * Tidy warnings cron task.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task; namespace phpbb\cron\task;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Parametrized cron task interface. * Parametrized cron task interface.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task; namespace phpbb\cron\task;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Cron task interface * Cron task interface
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\cron\task; namespace phpbb\cron\task;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Cron task wrapper class. * Cron task wrapper class.
* Enhances cron tasks with convenience methods that work identically for all tasks. * Enhances cron tasks with convenience methods that work identically for all tasks.

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Database Abstraction Layer * Database Abstraction Layer
* @package dbal * @package dbal

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Firebird/Interbase Database Abstraction Layer * Firebird/Interbase Database Abstraction Layer
* Minimum Requirement is Firebird 2.1 * Minimum Requirement is Firebird 2.1

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* MSSQL Database Abstraction Layer * MSSQL Database Abstraction Layer
* Minimum Requirement is MSSQL 2000+ * Minimum Requirement is MSSQL 2000+

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* MSSQL Database Base Abstraction Layer * MSSQL Database Base Abstraction Layer
* @package dbal * @package dbal

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Unified ODBC functions * Unified ODBC functions
* Unified ODBC functions support any database having ODBC driver, for example Adabas D, IBM DB2, iODBC, Solid, Sybase SQL Anywhere... * Unified ODBC functions support any database having ODBC driver, for example Adabas D, IBM DB2, iODBC, Solid, Sybase SQL Anywhere...

View file

@ -13,14 +13,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Prior to version 1.1 the SQL Server Native PHP driver didn't support sqlsrv_num_rows, or cursor based seeking so we recall all rows into an array * Prior to version 1.1 the SQL Server Native PHP driver didn't support sqlsrv_num_rows, or cursor based seeking so we recall all rows into an array
* and maintain our own cursor index into that array. * and maintain our own cursor index into that array.

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* MySQL4 Database Abstraction Layer * MySQL4 Database Abstraction Layer
* Compatible with: * Compatible with:

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Abstract MySQL Database Base Abstraction Layer * Abstract MySQL Database Base Abstraction Layer
* @package dbal * @package dbal

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* MySQLi Database Abstraction Layer * MySQLi Database Abstraction Layer
* mysqli-extension has to be compiled with: * mysqli-extension has to be compiled with:

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Oracle Database Abstraction Layer * Oracle Database Abstraction Layer
* @package dbal * @package dbal

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* PostgreSQL Database Abstraction Layer * PostgreSQL Database Abstraction Layer
* Minimum Requirement is Version 7.3+ * Minimum Requirement is Version 7.3+

View file

@ -9,14 +9,6 @@
namespace phpbb\db\driver; namespace phpbb\db\driver;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Sqlite Database Abstraction Layer * Sqlite Database Abstraction Layer
* Minimum Requirement: 2.8.2+ * Minimum Requirement: 2.8.2+

View file

@ -9,14 +9,6 @@
namespace phpbb\db\migration; namespace phpbb\db\migration;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The migrator is responsible for applying new migrations in the correct order. * The migrator is responsible for applying new migrations in the correct order.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\db\migration; namespace phpbb\db\migration;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Abstract base class for database migrations * Abstract base class for database migrations
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\db; namespace phpbb\db;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The migrator is responsible for applying new migrations in the correct order. * The migrator is responsible for applying new migrations in the correct order.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\db; namespace phpbb\db;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Collects rows for insert into a database until the buffer size is reached. * Collects rows for insert into a database until the buffer size is reached.
* Then flushes the buffer to the database and starts over again. * Then flushes the buffer to the database and starts over again.

View file

@ -9,14 +9,6 @@
namespace phpbb\db; namespace phpbb\db;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Database Tools for handling cross-db actions such as altering columns, etc. * Database Tools for handling cross-db actions such as altering columns, etc.
* Currently not supported is returning SQL for creating tables. * Currently not supported is returning SQL for creating tables.

View file

@ -9,14 +9,6 @@
namespace phpbb\di\extension; namespace phpbb\di\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;

View file

@ -9,14 +9,6 @@
namespace phpbb\di\extension; namespace phpbb\di\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;

View file

@ -9,14 +9,6 @@
namespace phpbb\di\extension; namespace phpbb\di\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\DependencyInjection\Extension; use Symfony\Component\HttpKernel\DependencyInjection\Extension;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;

View file

@ -9,14 +9,6 @@
namespace phpbb\di\pass; namespace phpbb\di\pass;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;

View file

@ -9,14 +9,6 @@
namespace phpbb\di\pass; namespace phpbb\di\pass;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;

View file

@ -9,14 +9,6 @@
namespace phpbb\di; namespace phpbb\di;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
/** /**

View file

@ -9,14 +9,6 @@
namespace phpbb; namespace phpbb;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
class error_collector class error_collector
{ {
var $errors; var $errors;

View file

@ -9,14 +9,6 @@
namespace phpbb\event; namespace phpbb\event;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\EventDispatcher\Event; use Symfony\Component\EventDispatcher\Event;
class data extends Event implements \ArrayAccess class data extends Event implements \ArrayAccess

View file

@ -9,14 +9,6 @@
namespace phpbb\event; namespace phpbb\event;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher; use Symfony\Component\EventDispatcher\ContainerAwareEventDispatcher;
/** /**

View file

@ -9,14 +9,6 @@
namespace phpbb\event; namespace phpbb\event;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class extension_subscriber_loader class extension_subscriber_loader

View file

@ -9,14 +9,6 @@
namespace phpbb\event; namespace phpbb\event;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;

View file

@ -9,14 +9,6 @@
namespace phpbb\event; namespace phpbb\event;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\HttpKernel\Event\GetResponseEvent; use Symfony\Component\HttpKernel\Event\GetResponseEvent;

View file

@ -9,14 +9,6 @@
namespace phpbb\event; namespace phpbb\event;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\HttpKernel\Event\PostResponseEvent; use Symfony\Component\HttpKernel\Event\PostResponseEvent;

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
/** /**

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Exception class for metadata * Exception class for metadata
*/ */

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The interface extension meta classes have to implement to run custom code * The interface extension meta classes have to implement to run custom code
* on enable/disable/purge. * on enable/disable/purge.

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The extension finder provides a simple way to locate files in active extensions * The extension finder provides a simple way to locate files in active extensions
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerInterface;
/** /**

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* The extension metadata manager validates and gets meta-data for extensions * The extension metadata manager validates and gets meta-data for extensions
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\extension; namespace phpbb\extension;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Provides a set of items found in extensions. * Provides a set of items found in extensions.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\feed; namespace phpbb\feed;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Base class with some generic functions and settings. * Base class with some generic functions and settings.
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\feed; namespace phpbb\feed;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Factory class to return correct object * Factory class to return correct object
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\feed; namespace phpbb\feed;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Forum feed * Forum feed
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\feed; namespace phpbb\feed;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* 'All Forums' feed * 'All Forums' feed
* *

View file

@ -9,14 +9,6 @@
namespace phpbb\feed; namespace phpbb\feed;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* Class with some helpful functions used in feeds * Class with some helpful functions used in feeds
* @package phpBB3 * @package phpBB3

View file

@ -9,14 +9,6 @@
namespace phpbb\feed; namespace phpbb\feed;
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/** /**
* News feed * News feed
* *

Some files were not shown because too many files have changed in this diff Show more