Log message #4156455

# At Username Text
# Jul 6th 2018, 09:26 lorenzo if you do `->first()`
# Jul 6th 2018, 09:26 lorenzo no, it will only filter until the first one returns true @k4t
# Jul 6th 2018, 09:26 james.phillips @bravo-kernel sorry I now understand, yes might is working like yours... I didn't notice that Example Value was just missing the json api... the response was correct and I was happy with that ;)
# Jul 6th 2018, 09:25 k4t but when I call ->filter on it then every elements in that collection needs to be compared so they are demanded, right?
# Jul 6th 2018, 09:24 lorenzo @k4t ok, then that is a lazy collection. No need to stop the loop, elements are only processed on demand
# Jul 6th 2018, 09:24 josbeir :)
# Jul 6th 2018, 09:24 josbeir it has like 10000000 traits
# Jul 6th 2018, 09:24 neon1024 Can we just use an emoji typehint in the code! :)
# Jul 6th 2018, 09:24 josbeir but i must agree, the whole time stuff has so much nested stuff its not easy to get a good understanding of it
# Jul 6th 2018, 09:23 neon1024 Touché!
# Jul 6th 2018, 09:23 lorenzo it can be string, int, datetimeinterface
# Jul 6th 2018, 09:23 josbeir :P
# Jul 6th 2018, 09:23 josbeir as you once said @neon1024: RTFM
# Jul 6th 2018, 09:23 lorenzo @neon1024 that’s actaully what the type is :shrug:
# Jul 6th 2018, 09:22 k4t @lorenz I am iterating over results set from database
# Jul 6th 2018, 09:22 josbeir https://book.cakephp.org/3.0/en/core-libraries/time.html#creating-time-instances
# Jul 6th 2018, 09:22 neon1024 So it seems it’s data type is :shrug:
# Jul 6th 2018, 09:22 neon1024 https://github.com/cakephp/cakephp/blob/master/src/I18n/Time.php#L105-L108
# Jul 6th 2018, 09:22 braeden :,(
# Jul 6th 2018, 09:22 josbeir :) yep
# Jul 6th 2018, 09:22 braeden 4.0?
# Jul 6th 2018, 09:22 neon1024 Man I’m looking forward to Cake adopting scalar type hints
# Jul 6th 2018, 09:21 josbeir new Time('-1 hour') should work
# Jul 6th 2018, 09:21 josbeir strtotime is not needed i think
# Jul 6th 2018, 09:21 neon1024 Seems like it makes sense to me at least :slightly_smiling_face: Thanks @josbeir
# Jul 6th 2018, 09:20 neon1024 File uploaded https://cakesf.slack.com/files/U1BT622HW/FBL4E7XQD/check_for_resetting_a_password.php / https://slack-files.com/T053DPNCM-FBL4E7XQD-05df9508df
# Jul 6th 2018, 09:19 lorenzo what are you iterating? is it just an array?
# Jul 6th 2018, 09:18 k4t ok, thanks
# Jul 6th 2018, 09:18 lorenzo you can switch from one mode to the other easily
# Jul 6th 2018, 09:18 josbeir * @param string|int|\DateTime|\DateTimeImmutable $value The value to convert.
# Jul 6th 2018, 09:17 lorenzo there is though, an optimization in place, that if the collection detects that the underlying data is just an array, it will iterate all elements. As it is actually faster doing all operations than streaming them
# Jul 6th 2018, 09:17 josbeir public static $dateTimeClass = 'Cake\I18n\Time';
# Jul 6th 2018, 09:17 josbeir DateTimeType uses Time i think
# Jul 6th 2018, 09:17 lorenzo @k4t well, for the most pat collections are lazy, you will not iterate all elements until you demand them
# Jul 6th 2018, 09:17 josbeir Time
# Jul 6th 2018, 09:16 neon1024 DateTime, Chronos, Time or Date?
# Jul 6th 2018, 09:16 neon1024 Ah, but which one?!
# Jul 6th 2018, 09:16 josbeir check datetimetype
# Jul 6th 2018, 09:16 josbeir cake knows what to do with it
# Jul 6th 2018, 09:16 josbeir just pass a DateTime object
# Jul 6th 2018, 09:16 k4t @lorenzo if order or returned object will meet my needs than yes, ->first will be enough but still... I have to iterate over whole collection. I am curious if it is possible to do not do this