gitignore + fix typing
This commit is contained in:
parent
272c928375
commit
9e96edb1ab
|
@ -1,2 +1,3 @@
|
||||||
/node_modules
|
/node_modules
|
||||||
/.vscode
|
/.vscode
|
||||||
|
.idea
|
||||||
|
|
|
@ -4,9 +4,12 @@
|
||||||
|
|
||||||
class Repo_i{
|
class Repo_i{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var \PDO
|
||||||
|
*/
|
||||||
protected $pdo = null;
|
protected $pdo = null;
|
||||||
|
|
||||||
public function setPDO($pdo){
|
public function setPDO( \PDO $pdo){
|
||||||
|
|
||||||
$this->pdo = $pdo;
|
$this->pdo = $pdo;
|
||||||
|
|
||||||
|
|
|
@ -17,5 +17,5 @@
|
||||||
Request::setAuthSystem(new AuthSystemDefault);
|
Request::setAuthSystem(new AuthSystemDefault);
|
||||||
|
|
||||||
/* (4) launch router */
|
/* (4) launch router */
|
||||||
$MainRouter = Router::launch($_GET['url']);
|
Router::launch($_GET['url']);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue