Commit 1c200e598df77546c5c9e97a90c7b662c98b3fa8
1 parent
175f1d0b
registration
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
app/library/App/Controllers/UserController.php
... | ... | @@ -63,6 +63,7 @@ class UserController extends CrudResourceController |
63 | 63 | $user = new User(); |
64 | 64 | $user->username = 'test33233222'; |
65 | 65 | $user->save(); |
66 | + die(var_dump($user)); | |
66 | 67 | |
67 | 68 | echo $user->id; |
68 | 69 | |
... | ... | @@ -70,6 +71,7 @@ class UserController extends CrudResourceController |
70 | 71 | $project->name = 'test33233222'; |
71 | 72 | $project->save(); |
72 | 73 | echo $project->id; |
74 | + | |
73 | 75 | die(); |
74 | 76 | |
75 | 77 | /** **********************/ | ... | ... |