This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $database = \MyNameSpace\ExamDB::create( | |
| 'mysql', | |
| [ | |
| 'dbuser' => 'root', | |
| 'dbpass' => 'password', | |
| 'dbname' => 'test', | |
| 'host' => 'localhost' | |
| ], | |
| true // debug true throwed if error |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Example | |
| */ | |
| namespace MyNameSpace; | |
| use Slim\App as Slim; | |
| use Pentagonal\Component\Slim\BenchMark; | |
| /** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Aufa\Gist\Component; | |
| /** | |
| * Class DataStorage | |
| * @package Aufa\Gist\Component | |
| * | |
| * add backslash to use default core function - to avoid user create new functions instead of | |
| */ | |
| class DataStorage implements \ArrayAccess, \Serializable, \Countable, \JsonSerializable |
OlderNewer