Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bingo
ServiceCore
Commits
1a7a02a8
Commit
1a7a02a8
authored
5 years ago
by
Виктор Волков
Browse files
Options
Download
Email Patches
Plain Diff
fix: fix query trait
parent
e33f7c2e
1 merge request
!23
fix: fix query trait
Pipeline
#4139
passed with stages
in 1 minute and 48 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
src/Application/Exception/EntityNotFound.php
src/Application/Exception/EntityNotFound.php
+14
-0
src/Infrastructure/Domain/Repository/QueryableTrait.php
src/Infrastructure/Domain/Repository/QueryableTrait.php
+1
-0
No files found.
src/Application/Exception/EntityNotFound.php
0 → 100644
View file @
1a7a02a8
<?php
namespace
ServiceCore\Application\Exception
;
/**
* Class EntityNotFound
*
* @package ServiceCore\Application\Exception
*/
class
EntityNotFound
extends
AbstractApplicationException
{
protected
$code
=
"entity_not_found"
;
protected
$status
=
404
;
}
This diff is collapsed.
Click to expand it.
src/Infrastructure/Domain/Repository/QueryableTrait.php
View file @
1a7a02a8
...
...
@@ -3,6 +3,7 @@
namespace
ServiceCore\Infrastructure\Domain\Repository
;
use
ApiQL\ApiQL
;
use
Doctrine\DBAL\FetchMode
;
/**
* Trait QueryableTrait
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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
Menu
Projects
Groups
Snippets
Help