A single sign-on bridge that read the stored hash and compared it, which stopped working when the algorithm changed. The comparison had never worked and the fallback path…
Exposing an array property publicly for reading felt unsafe until the copy semantics were the point rather than an accident. PHP arrays are values, so reading one gives…
Laravel 12 moves its starter kits out of the framework, which made them worth reading as a reference rather than as a dependency. A starter kit is for…
A category tree walker that recursed to a depth of eleven in development and to two hundred in production, on data nobody had constrained. The production data had…
Replacing a foreach with array_find made the code shorter and left the actual problem in place. A new function makes a linear scan pleasant to write, which is…
A deprecated class constant emitting a notice on every use, into a channel that had been discarding notices since a configuration change in March. The same mistake as…