1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-09-26 22:18:59 +02:00

Fix const color miss match

This commit is contained in:
hoseinz3
2017-12-28 12:45:20 +03:30
parent 409b5ceaf9
commit 1b4a2a1234

View File

@@ -134,7 +134,7 @@ class User
{
const ACCESS_READ = 1;
const ACCESS_CREATE = 2;
   const ACCESS_UPDATE = 4;
const ACCESS_UPDATE = 4;
const ACCESS_DELETE = 8;
}