Skip to content

Commit 5eea746

Browse files
kalessilfabpot
authored andcommitted
[2.3] Static Code Analysis for Components
1 parent 59c1f77 commit 5eea746

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Loader/CsvFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @api
2424
*/
25-
class CsvFileLoader extends ArrayLoader implements LoaderInterface
25+
class CsvFileLoader extends ArrayLoader
2626
{
2727
private $delimiter = ';';
2828
private $enclosure = '"';

Loader/IniFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @author stealth35
2222
*/
23-
class IniFileLoader extends ArrayLoader implements LoaderInterface
23+
class IniFileLoader extends ArrayLoader
2424
{
2525
/**
2626
* {@inheritdoc}

Loader/MoFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* @copyright Copyright (c) 2010, Union of RAD http://union-of-rad.org (http://lithify.me/)
2020
*/
21-
class MoFileLoader extends ArrayLoader implements LoaderInterface
21+
class MoFileLoader extends ArrayLoader
2222
{
2323
/**
2424
* Magic used for validating the format of a MO file as well as

Loader/PhpFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @api
2424
*/
25-
class PhpFileLoader extends ArrayLoader implements LoaderInterface
25+
class PhpFileLoader extends ArrayLoader
2626
{
2727
/**
2828
* {@inheritdoc}

Loader/PoFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @copyright Copyright (c) 2010, Union of RAD http://union-of-rad.org (http://lithify.me/)
2020
* @copyright Copyright (c) 2012, Clemens Tolboom
2121
*/
22-
class PoFileLoader extends ArrayLoader implements LoaderInterface
22+
class PoFileLoader extends ArrayLoader
2323
{
2424
public function load($resource, $locale, $domain = 'messages')
2525
{

Loader/YamlFileLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
* @api
2626
*/
27-
class YamlFileLoader extends ArrayLoader implements LoaderInterface
27+
class YamlFileLoader extends ArrayLoader
2828
{
2929
private $yamlParser;
3030

0 commit comments

Comments
 (0)