Last active
April 6, 2016 21:15
-
-
Save heddn/a5a6a925c4367a087f696e9f141611f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From Migration->transform(): | |
return [ | |
0 => 9, | |
] | |
// And what get's set to destination property: | |
return [ | |
0 => [0 => 9], | |
1 => [0 => 10], | |
] | |
// What it should set: | |
[ | |
0 => 9, | |
1 => 10, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment