Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Guardians of the Kretschmar Elock System
Doorcode
Commits
d3ea6714
Commit
d3ea6714
authored
Feb 29, 2020
by
Jacob Priddy
👌
Browse files
Bug I was having issues with was framework bug... gg. Also get xdebug
configured in the phpini
parent
5b9aed6c
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
php/dev.ini
View file @
d3ea6714
error_reporting
=
E_ALL
display_startup_errors
=
On
display_errors
=
On
xdebug.remote_enable
=
1
xdebug.remote_connect_back
=
1
xdebug.idekey
=
"PHPSTORM"
xdebug.remote_port
=
9999
xdebug.remote_autostart
=
1
# DockerNAT gateway IP
xdebug.remote.host
=
host.docker.internal
xdebug.remote.mode
=
req
xdebug.remote.handler
=
dbgp
src/web/backend/composer.lock
View file @
d3ea6714
This diff is collapsed.
Click to expand it.
src/web/backend/tests/Doubles/InMemoryUsersRepositoryStub.php
View file @
d3ea6714
...
...
@@ -78,4 +78,11 @@ class InMemoryUsersRepositoryStub implements UsersRepository {
public
function
findByDoorcode
(
string
$doorcode
):
?User
{
return
null
;
}
/**
* @inheritDoc
*/
public
function
findByEmail
(
string
$email
):
?User
{
return
null
;
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment