????
Current Path : /home/thenclexdoctor.com/public_html/app/Bitwise/ |
Current File : /home/thenclexdoctor.com/public_html/app/Bitwise/UserLevelOfTraining.php |
<?php namespace App\Bitwise; class UserLevelOfTraining extends Bitwise { const BEGINNER = 1; const MIDDLE = 2; const EXPERT = 4; static $levelOfTraining = [ "beginner", "middle", "expert", ]; static $levelOfTrainingValueByBit = [ 1 => "beginner", 2 => "middle", 4 => "expert", ]; static $levelOfTrainingBitByValue = [ "beginner" => 1, "middle" => 2, "expert" => 4, ]; }
Sorry, this page is not available...