From c3c1ef1c21a97fb895ee8e397a20ec242fba9ca6 Mon Sep 17 00:00:00 2001 From: Awilum Date: Mon, 18 Feb 2019 02:18:32 +0300 Subject: [PATCH] Flextype Core: Entries - delete() method - fixes. --- flextype/Entries.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flextype/Entries.php b/flextype/Entries.php index 0e80e7ad..bb1ee725 100755 --- a/flextype/Entries.php +++ b/flextype/Entries.php @@ -208,7 +208,7 @@ class Entries * @param string $entry Entry * @return bool True on success, false on failure. */ - public static function delete(string $entry) + public static function delete(string $entry) : bool { return Filesystem::deleteDir(PATH['entries'] . '/' . $entry); }