Page MenuHomeDevCentral

UserExternalSource: cast user_id property as integer
ClosedPublic

Authored by dereckson on Jul 2 2016, 08:59.
Tags
None
Referenced Files
F34897670: D447.diff
Fri, Jul 3, 18:21
F34895486: D447.id1082.diff
Fri, Jul 3, 16:59
F34874700: D447.id.diff
Fri, Jul 3, 14:35
F34857504: D447.id1081.diff
Fri, Jul 3, 12:36
Unknown Object (File)
Thu, Jul 2, 04:19
Unknown Object (File)
Sat, Jun 27, 18:42
Unknown Object (File)
Fri, Jun 26, 19:04
Unknown Object (File)
Fri, Jun 26, 10:41
Subscribers
None

Details

Summary

Code using the UserExternalSource model expects user ID to be
an integer, and not a string:

$externalUser = UserExternalSource::find(1);
// Does something with $externalUser->user_id

Eloquent allows to specify attributes casting with a $casts array.

Test Plan

Tested through D445 new unit test which provide:
$this->assertSame($externalUser->user_id, 1);

Diff Detail

Repository
rGROVE Auth Grove
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

dereckson retitled this revision from to UserExternalSource: cast user_id property as integer.
dereckson updated this object.
dereckson edited the test plan for this revision. (Show Details)
dereckson added a reviewer: dereckson.
dereckson edited edge metadata.
This revision is now accepted and ready to land.Jul 2 2016, 08:59
This revision was automatically updated to reflect the committed changes.