Example #1
0
<?php

include '../src/akaria.php';
var_dump(Akaria::equals('Not Found', 404));
Example #2
0
 static function validateSecretKey($secretKey = null)
 {
     if ($secretKey !== SECRECT_KEY) {
         return Akaria::unauthorized();
     }
 }