codeigniter4 / CodeIgniter4

Open Source PHP Framework (originally from EllisLab)
https://codeigniter.com/
MIT License
5.4k stars 1.9k forks source link

Dev: replace `time()` with Time #6815

Closed kenjis closed 1 year ago

kenjis commented 2 years ago

Replace time() with Time class. time() is not testable.

time()
// ↓
Time::now()->getTimestamp()

See https://github.com/codeigniter4/CodeIgniter4/pull/6753#pullrequestreview-1168235642

$ grep -lr 'time()' system
system/Database/MigrationRunner.php
system/Cache/Handlers/FileHandler.php
system/Cache/Handlers/PredisHandler.php
system/Cache/Handlers/WincacheHandler.php
system/Cache/Handlers/MemcachedHandler.php
system/Cache/Handlers/RedisHandler.php
system/Throttle/Throttler.php
system/Test/Fabricator.php
system/Test/TestResponse.php
system/Test/Mock/MockSession.php
system/Test/Mock/MockCache.php
system/Security/Security.php
system/Images/Handlers/ImageMagickHandler.php
system/HTTP/ResponseTrait.php
system/Files/File.php
system/Cookie/Cookie.php
system/Helpers/date_helper.php
system/ThirdParty/Kint/Parser/MicrotimePlugin.php
system/Email/Email.php
system/Debug/Toolbar/Collectors/Database.php
system/Debug/Toolbar.php
system/BaseModel.php
system/Session/Session.php
system/Session/Handlers/FileHandler.php
system/Session/Handlers/MemcachedHandler.php
system/Session/Handlers/RedisHandler.php
ddevsr commented 2 years ago

Updated :

$ grep -lr 'time()' system
system/Cache/Handlers/FileHandler.php
system/Database/MigrationRunner.php
system/Test/Fabricator.php
system/Test/Mock/MockCache.php
system/Test/Mock/MockSession.php
system/Test/TestResponse.php
system/ThirdParty/Kint/Parser/MicrotimePlugin.php
kenjis commented 2 years ago

system/ThirdParty/Kint/Parser/MicrotimePlugin.php is not our code. We don't edit it.

ping-yee commented 1 year ago

Does anyone can approve the last PR #6880 ? If this PR get merged, this issue will be solved.

kenjis commented 1 year ago
$ grep -lr 'time()' system
system/Cache/Handlers/PredisHandler.php
system/Throttle/Throttler.php
system/ThirdParty/Kint/Parser/MicrotimePlugin.php
system/Debug/Toolbar.php
ddevsr commented 1 year ago

Now completed changed

mackxpall commented 1 year ago

$ grep -lr 'time()' system system/Cache/Handlers/PredisHandler.php system/Throttle/Throttler.php system/ThirdParty/Kint/Parser/MicrotimePlugin.php system/Debug/Toolbar.php. $ grep -lr 'time()' system system/Cache/Handlers/PredisHandler.php system/Throttle/Throttler.php system/ThirdParty/Kint/Parser/MicrotimePlugin.php system/Debug/Toolbar.php

kenjis commented 1 year ago

Thank you! @ping-yee @ddevsr