From 3e42cf823b532ecaa9c88cb1f7cc1e13f1fd9851 Mon Sep 17 00:00:00 2001 From: Marcin Kurczewski Date: Tue, 8 Oct 2013 23:00:19 +0200 Subject: [PATCH] Removed unnecessary method --- src/Models/PostSafety.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Models/PostSafety.php b/src/Models/PostSafety.php index e2abe132..1c02d982 100644 --- a/src/Models/PostSafety.php +++ b/src/Models/PostSafety.php @@ -4,9 +4,4 @@ class PostSafety extends Enum const Safe = 1; const Sketchy = 2; const Unsafe = 3; - - public static function getAll() - { - return [self::Safe, self::Sketchy, self::Unsafe]; - } }