app\models\Beatmap::modeStr PHP Method

modeStr() public static method

public static modeStr ( $int )
    public static function modeStr($int)
    {
        return array_search_null($int, static::MODES);
    }

Usage Example

Ejemplo n.º 1
0
 public function getModeAttribute($value)
 {
     if (!present($value)) {
         return;
     }
     return Beatmap::modeStr((int) $value);
 }
All Usage Examples Of app\models\Beatmap::modeStr