-
-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow alias to be a callback #452
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reminds me of #353 but cleaner 👍
src/Support/SelectFields.php
Outdated
@@ -213,7 +213,7 @@ protected static function handleFields(array $queryArgs, array $requestedFields, | |||
// Select | |||
else { | |||
$key = isset($fieldObject->config['alias']) | |||
? $fieldObject->config['alias'] | |||
? value($fieldObject->config['alias']) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know these global helpers are super convenient, but the same reason they're global I despise them.
In this case this should be replaced with inline code doing the same.
tests/Database/SelectFieldsTest.php
Outdated
], | ||
], | ||
]; | ||
|
||
$this->assertEquals($response->getStatusCode(), 200); | ||
$this->assertEquals($expectedResult, $response->json()); | ||
|
||
// clear the mock | ||
Carbon::setTestNow(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now necessary, Laravels (and Orchestras) tearDown
takes care of it
tests/Database/SelectFieldsTest.php
Outdated
->create([ | ||
'post_id' => $post->id, | ||
'created_at' => new DateTime('2000-01-01'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather stay in "Carbon-town" everywhere.
I remember, guess I was too enthusiastic in #356 ;) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
a test actually existed for this case but just repeated the previous test