mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/15790] Fix typo in var name.
PHPBB3-15790
This commit is contained in:
parent
dfcd18b9ce
commit
bbfd0385b0
1 changed files with 3 additions and 3 deletions
|
@ -155,7 +155,7 @@ class extension_base extends Extension
|
|||
*/
|
||||
public function getServicesFilenames($services_directory, $services_file_prefix = '')
|
||||
{
|
||||
$servises_files = array();
|
||||
$services_files = array();
|
||||
$finder = new \Symfony\Component\Finder\Finder();
|
||||
$finder
|
||||
->name("{$services_file_prefix}*.yml")
|
||||
|
@ -165,9 +165,9 @@ class extension_base extends Extension
|
|||
|
||||
foreach ($finder as $file)
|
||||
{
|
||||
$servises_files[] = $file->getBasename();
|
||||
$services_files[] = $file->getBasename();
|
||||
}
|
||||
|
||||
return $servises_files;
|
||||
return $services_files;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue