Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
give
/
src
/
Log
/
ValueObjects
:
EnumInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Give\Log\ValueObjects; interface EnumInterface { /** * Get value * * @return string|null */ public function getValue(); /** * Get default value * * @return string */ public static function getDefault(); /** * Check if Enum is equal with the passed variable * * @param mixed $value * * @return bool */ public function equalsTo($value); }