mmk2410
/
my-todo-list
Archived
1
0
Fork 0

Defined common todo states

This commit is contained in:
Marcel Kapfer 2021-09-18 22:45:16 +02:00
parent 77cd8f62c9
commit 2358ad70cc
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 9 additions and 0 deletions

9
src/TodoStates.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace MMK2410\MyTodoList;
abstract class TodoStates
{
const Todo = "Todo";
const Done = "Done";
}