Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfabiocarneiro <fahecs@gmail.com>2015-05-27 12:56:17 +0300
committerfabiocarneiro <fahecs@gmail.com>2015-05-27 12:56:17 +0300
commita2a63d34ebb460174e1a3e8d8022fe3e3ab4b469 (patch)
treefbfc480352bc711bc03f12849824507e56b5034a /core/Development.php
parentb2f5b5489ceca056217fc6663ec6c2c6b052cd42 (diff)
fix core folder with php-cs-fixer for psr-2
Diffstat (limited to 'core/Development.php')
-rw-r--r--core/Development.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Development.php b/core/Development.php
index a2dd44c673..3b44eba71d 100644
--- a/core/Development.php
+++ b/core/Development.php
@@ -168,7 +168,7 @@ class Development
$fileIterator = new \LimitIterator($file, $offset, $count);
$methodCode = "\n " . $method->getDocComment() . "\n";
- foreach($fileIterator as $line) {
+ foreach ($fileIterator as $line) {
$methodCode .= $line;
}
$methodCode .= "\n";
@@ -185,7 +185,7 @@ class Development
$fileIterator = new \LimitIterator($file, 0, $class->getStartLine());
$uses = array();
- foreach($fileIterator as $line) {
+ foreach ($fileIterator as $line) {
if (preg_match('/(\s*)use (.+)/', $line, $match)) {
$uses[] = trim($match[2]);
}