aboutsummaryrefslogtreecommitdiff
path: root/app/class/Model.php
diff options
context:
space:
mode:
authorvincent-peugnet <v.peugnet@free.fr>2020-01-29 21:51:20 +0100
committervincent-peugnet <v.peugnet@free.fr>2020-01-29 21:51:20 +0100
commitaaa5016ea6ec00137868fef0693e9ccdb2ca633d (patch)
treed91a9661d68ba68b33b0522fb51bc5dcb0fe24a9 /app/class/Model.php
parent46ad69fce564ad5f935cbf3ff5b4ef8a41209075 (diff)
parent2211f5cbae94c09c03c95b4c4d010ddaf72738df (diff)
downloadwcms-aaa5016ea6ec00137868fef0693e9ccdb2ca633d.tar.gz
wcms-aaa5016ea6ec00137868fef0693e9ccdb2ca633d.zip
Merge branch 'implement-css-parser'
Diffstat (limited to 'app/class/Model.php')
-rw-r--r--app/class/Model.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/class/Model.php b/app/class/Model.php
index 655de9f..40e3a2e 100644
--- a/app/class/Model.php
+++ b/app/class/Model.php
@@ -139,7 +139,7 @@ abstract class Model
*
* @return bool return true if the dir already exist or was created succesfullt. Otherwise return false
*/
- public function dircheck(string $dir) : bool
+ public static function dircheck(string $dir) : bool
{
if (!is_dir($dir)) {
return mkdir($dir);