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:
Diffstat (limited to 'core/Filesystem.php')
-rw-r--r--core/Filesystem.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Filesystem.php b/core/Filesystem.php
index bcf36d29e1..ca0a30d5e2 100644
--- a/core/Filesystem.php
+++ b/core/Filesystem.php
@@ -14,7 +14,7 @@ use Piwik\Tracker\Cache;
/**
* Contains helper functions that deal with the filesystem.
- *
+ *
*/
class Filesystem
{
@@ -70,7 +70,7 @@ class Filesystem
/**
* Attempts to create a new directory. All errors are silenced.
- *
+ *
* _Note: This function does **not** create directories recursively._
*
* @param string $path The path of the directory to create.
@@ -143,7 +143,7 @@ class Filesystem
/**
* Recursively find pathnames that match a pattern.
- *
+ *
* See {@link http://php.net/manual/en/function.glob.php glob} for more info.
*
* @param string $sDir directory The directory to glob in.
@@ -239,7 +239,7 @@ class Filesystem
/**
* Copies the contents of a directory recursively from `$source` to `$target`.
- *
+ *
* @param string $source A directory or file to copy, eg. './tmp/latest'.
* @param string $target A directory to copy to, eg. '.'.
* @param bool $excludePhp Whether to avoid copying files if the file is related to PHP