Geni Jaho
Geni Jaho's Blog

Geni Jaho's Blog

Follow
homePersonal site
Tag

rector

#rector

More content

Read more stories on Hashnode


Articles with this tag

Speed up GitHub Actions by caching Composer, Rector, & Pint

Jun 20, 20235 min read 192 views

GitHub's 2000 minutes per month of free usage of GitHub Actions is usually enough to handle light workflows. However, as more tech is run...

Speed up GitHub Actions by caching Composer, Rector, & Pint

Doing stricter checks in PHP

Apr 8, 20233 min read 973 views

A nice refactoring I've learned recently is to utilize types in conditionals. For years I’ve been doing if (!empty($posts)), but Rector, a tool to...

Doing stricter checks in PHP

Upgrading to Eloquent accessors & mutators from Laravel 9

Feb 26, 20233 min read 758 views

Laravel 10 is making the headlines these days. However, many apps are stuck in older versions, or at least still use the syntax and methods of older...

Upgrading to Eloquent accessors & mutators from Laravel 9

Safely upgrade from PHP 7.4 to 8.1 using Rector

Sep 24, 20224 min read 3.6K views

You just have to try Rector. Heck, let the tests break, just run it. · I have to say it from the start, the only thing that comes close to safely...

Safely upgrade from PHP 7.4 to 8.1 using Rector

Refactoring #8: What is dead may never run

Sep 4, 20224 min read 288 views

Removing unreachable and redundant code will benefit you massively over time. There's a tool to do this automatically for you. · It's important to take a...

Refactoring #8: What is dead may never run

Refactoring #7: Upping the coding style game in PHP using Rector

Aug 31, 20225 min read 346 views

Rector has a catalog of refactorings ready for us to consume and expand upon. · Continuing from the last post, we're now exploring other Rector...

Refactoring #7: Upping the coding style game in PHP using Rector