Issues (32)

test/create.php (4 issues)

1
<?php
2
use Erykai\Database\Users;
3
require "test/config.php";
4
require "vendor/autoload.php";
5
6
$user = new Users();
7
$user->name = "Alex de Oliveira Vidal";
0 ignored issues
show
Bug Best Practice introduced by
The property name does not exist on Erykai\Database\Users. Since you implemented __set, consider adding a @property annotation.
Loading history...
8
$user->email = "[email protected]";
0 ignored issues
show
Bug Best Practice introduced by
The property email does not exist on Erykai\Database\Users. Since you implemented __set, consider adding a @property annotation.
Loading history...
9
$user->password = "102asda030";
0 ignored issues
show
Bug Best Practice introduced by
The property password does not exist on Erykai\Database\Users. Since you implemented __set, consider adding a @property annotation.
Loading history...
10
$user->age = 10;
0 ignored issues
show
Bug Best Practice introduced by
The property age does not exist on Erykai\Database\Users. Since you implemented __set, consider adding a @property annotation.
Loading history...
11
$user->save();
12
var_dump($user->response(), $user->data());
13