aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/phpbb/di/service_collection.php2
-rw-r--r--phpBB/phpbb/di/service_collection_iterator.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/di/service_collection.php b/phpBB/phpbb/di/service_collection.php
index f598a1db1a..b64d8c9dcd 100644
--- a/phpBB/phpbb/di/service_collection.php
+++ b/phpBB/phpbb/di/service_collection.php
@@ -39,7 +39,7 @@ class service_collection extends \ArrayObject
}
// Because of a PHP issue we have to redefine offsetExists
- // (even <with a call to the parent):
+ // (even with a call to the parent):
// https://bugs.php.net/bug.php?id=66834
// https://bugs.php.net/bug.php?id=67067
// But it triggers a sniffer issue that we have to skip
diff --git a/phpBB/phpbb/di/service_collection_iterator.php b/phpBB/phpbb/di/service_collection_iterator.php
index efea2cd956..8f4abbc6e8 100644
--- a/phpBB/phpbb/di/service_collection_iterator.php
+++ b/phpBB/phpbb/di/service_collection_iterator.php
@@ -50,7 +50,7 @@ class service_collection_iterator extends \ArrayIterator
}
// Because of a PHP issue we have to redefine offsetExists
- // (even <with a call to the parent):
+ // (even with a call to the parent):
// https://bugs.php.net/bug.php?id=66834
// https://bugs.php.net/bug.php?id=67067
// But it triggers a sniffer issue that we have to skip