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:
authormattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
commit1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (patch)
tree137c50850a5f21f1651f8066d4bd381a661e1987 /core/Filesystem.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/Filesystem.php')
-rw-r--r--core/Filesystem.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/core/Filesystem.php b/core/Filesystem.php
index feb02fd0b0..95a38681f4 100644
--- a/core/Filesystem.php
+++ b/core/Filesystem.php
@@ -46,7 +46,7 @@ class Filesystem
*
* Apache-specific; for IIS @see web.config
*
- * @param string $path without trailing slash
+ * @param string $path without trailing slash
* @param bool $overwrite whether to overwrite an existing file or not
* @param string $content
*/
@@ -169,9 +169,9 @@ class Filesystem
* Recursively find pathnames that match a pattern
* @see glob()
*
- * @param string $sDir directory
- * @param string $sPattern pattern
- * @param int $nFlags glob() flags
+ * @param string $sDir directory
+ * @param string $sPattern pattern
+ * @param int $nFlags glob() flags
* @return array
*/
public static function globr($sDir, $sPattern, $nFlags = null)
@@ -195,8 +195,8 @@ class Filesystem
/**
* Recursively delete a directory
*
- * @param string $dir Directory name
- * @param boolean $deleteRootToo Delete specified top-level directory as well
+ * @param string $dir Directory name
+ * @param boolean $deleteRootToo Delete specified top-level directory as well
* @param \Closure|false $beforeUnlink A closure to execute before unlinking.
*/
public static function unlinkRecursive($dir, $deleteRootToo, \Closure $beforeUnlink = null)
@@ -228,8 +228,8 @@ class Filesystem
/**
* Copy individual file from $source to $target.
*
- * @param string $source eg. './tmp/latest/index.php'
- * @param string $dest eg. './index.php'
+ * @param string $source eg. './tmp/latest/index.php'
+ * @param string $dest eg. './index.php'
* @param bool $excludePhp
* @throws Exception
* @return bool
@@ -259,8 +259,8 @@ class Filesystem
/**
* Copy recursively from $source to $target.
*
- * @param string $source eg. './tmp/latest'
- * @param string $target eg. '.'
+ * @param string $source eg. './tmp/latest'
+ * @param string $target eg. '.'
* @param bool $excludePhp
*/
public static function copyRecursive($source, $target, $excludePhp = false)