mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/17281] Remove not needed suppress
PHPBB3-17281
This commit is contained in:
parent
e42b743b86
commit
c73e7bfe05
5 changed files with 0 additions and 10 deletions
|
@ -17,8 +17,6 @@ namespace phpbb\event;
|
||||||
* This filter ignores directories and files starting with a dot.
|
* This filter ignores directories and files starting with a dot.
|
||||||
* It also skips some directories that do not contain events anyway,
|
* It also skips some directories that do not contain events anyway,
|
||||||
* such as e.g. files/, store/ and vendor/
|
* such as e.g. files/, store/ and vendor/
|
||||||
*
|
|
||||||
* @psalm-suppress MissingTemplateParam
|
|
||||||
*/
|
*/
|
||||||
class recursive_event_filter_iterator extends \RecursiveFilterIterator
|
class recursive_event_filter_iterator extends \RecursiveFilterIterator
|
||||||
{
|
{
|
||||||
|
|
|
@ -23,8 +23,6 @@ namespace phpbb\extension;
|
||||||
*
|
*
|
||||||
* Items could be anything, for example template paths or cron task names.
|
* Items could be anything, for example template paths or cron task names.
|
||||||
* Derived classes completely define what the items are.
|
* Derived classes completely define what the items are.
|
||||||
*
|
|
||||||
* @psalm-suppress MissingTemplateParam
|
|
||||||
*/
|
*/
|
||||||
abstract class provider implements \IteratorAggregate
|
abstract class provider implements \IteratorAggregate
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,8 +19,6 @@ namespace phpbb\finder;
|
||||||
* This filter ignores directories starting with a dot.
|
* This filter ignores directories starting with a dot.
|
||||||
* When searching for php classes and template files of extensions
|
* When searching for php classes and template files of extensions
|
||||||
* we don't need to look inside these directories.
|
* we don't need to look inside these directories.
|
||||||
*
|
|
||||||
* @psalm-suppress MissingTemplateParam
|
|
||||||
*/
|
*/
|
||||||
class recursive_dot_prefix_filter_iterator extends \RecursiveFilterIterator
|
class recursive_dot_prefix_filter_iterator extends \RecursiveFilterIterator
|
||||||
{
|
{
|
||||||
|
|
|
@ -15,9 +15,6 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace phpbb\finder;
|
namespace phpbb\finder;
|
||||||
|
|
||||||
/**
|
|
||||||
* @psalm-suppress MissingTemplateParam
|
|
||||||
*/
|
|
||||||
class recursive_path_iterator extends \RecursiveIteratorIterator
|
class recursive_path_iterator extends \RecursiveIteratorIterator
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -16,7 +16,6 @@ namespace phpbb\request;
|
||||||
/**
|
/**
|
||||||
* Replacement for a superglobal (like $_GET or $_POST) which calls
|
* Replacement for a superglobal (like $_GET or $_POST) which calls
|
||||||
* trigger_error on all operations but isset, overloads the [] operator with SPL.
|
* trigger_error on all operations but isset, overloads the [] operator with SPL.
|
||||||
* @psalm-suppress MissingTemplateParam
|
|
||||||
*/
|
*/
|
||||||
class deactivated_super_global implements \ArrayAccess, \Countable, \IteratorAggregate
|
class deactivated_super_global implements \ArrayAccess, \Countable, \IteratorAggregate
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue