First commit.

This commit is contained in:
kj
2020-03-07 23:37:19 -04:00
commit 9539b43212
10 changed files with 643 additions and 0 deletions

17
src/Libs/Params.php Normal file
View File

@ -0,0 +1,17 @@
<?php
namespace Libs;
class Params {
public function __construct($args){
foreach($args as $index => $value){
$this->$index = $value;
}
}
public function __get($index){
return (isset($this->$index) && $this->$index != '') ? urldecode($this->$index) : null;
}
}
?>