While browsing in the internet for literature on effective web application design, my attention was drawn to a text which highlights a programming approach in PHP language. I found it very beneficial, when working on the development of large PHP projects.
I recommend to keep these rules in mind and grow habits. These habits will help to code large-scale PHP systems in the future.
// Final class example
final class Config {
// Class implementation
// Config is a final class that cannot be extended by any other class.
}
declare(strict_types=1)
by default<?php
function exampleFunction(): void {
// Your function code here
echo "This function does not return any value.";
}
// Call the function
exampleFunction();
?>
Add a description when it provides more context than the method signature itself. Use full sentences for descriptions.
Good example: reveal what your arrays and collections contain
// GOOD
final class Album
{
/** @var list<string> */
private array $urls;
/** @var \Illuminate\Support\Collection<int, \App\Models\Song> */
private Collection $songs;
}
// BAD
final class Album
{
private array $urls;
private Collection $songs;
}
<?php
/**
* @return array<string>
*/
function takesAnInt(int $i) {
return [$i, "hello"]; //// <------------error here
}
$data = ["some text", 5];
takesAnInt($data[0]); //// <------------error here
$condition = rand(0, 5);
if ($condition) {
} elseif ($condition) {} //// <------------error here
{}
instead of .
in php code. Example is below.// GOOD
$welcome = "Hello, my name is {$name}.";
// BAD (hard to distinguish the variable)
$welcome = "Hello, my name is $name.";
// BAD (less readable)
$welcome = 'Hello, my name is '.$name.'.';
For cases where complexity is more, or when it’s not possible to use string interpolation, you can use sprintf function:
$welcome = sprintf('Hello, my name is %s', ucfirst($name));
// GOOD
use App\Modules\Shop\Models\Product;
echo Product::class;
// BAD
echo 'App\Modules\Shop\Models\Product';
self
keyword// GOOD
public function createNewClient(string $name): Client
{
$client = new Client();
$client->name = $name;
return $client;
}
// BAD
public function createNewClient(string $name): self
{
$client = new self();
$client->name = $name;
return $client
}
// Bad Example (with "Exception" suffix):
class SaveProductException extends \Exception {
// Exception-specific code or details
}
// Good Example (without "Exception" suffix):
class SaveProductError extends \Exception {
// Exception-specific code or details
}
// GOOD
abort(404, "The product with the ID {$productId} could not be found.");
// BAD
abort(404);
// GOOD
$count = (int) '7';
$isAdmin = (bool) $this->is_admin;
// BAD
$count = intval('7');
$isAdmin = boolval($this->is_admin);
// BAD
final class Time
{
private $hours, $minutes;
public function __construct($timeOrHours, $minutes = null)
{
if(is_string($timeOrHours) && is_null($minutes)) {
list($this->hours, $this->minutes) = explode($timeOrHours, ':', 2);
} else {
$this->hours = $timeOrHours;
$this->minutes = $minutes;
}
}
}
// GOOD
final class Time
{
private $hours, $minutes;
public function __construct($hours, $minutes)
{
$this->hours = (int) $hours;
$this->minutes = (int) $minutes;
}
public static function fromString($time)
{
list($hours, $minutes) = explode($time, ':', 2);
return new Time($hours, $minutes);
}
public static function fromMinutesSinceMidnight($minutesSinceMidnight)
{
$hours = floor($minutesSinceMidnight / 60);
$minutes = $minutesSinceMidnight % 60;
return new Time($hours, $minutes);
}
}
// GOOD
// Models\User.php
public function confirmEmailAfterRegistration(): void
{
$this->email = $this->email_register;
$this->email_register = null;
}
// Controllers\UserEmailAfterRegistrationController.php
public function store(): void
{
$user = auth()->user();
$user->confirmEmailAfterRegistration();
$user->save();
}
// BAD =====================================
// Models\User.php
public function setEmail(string $email): User;
public function setEmailAfterRegistration(string $email): User;
// Controllers\UserEmailAfterRegistrationController.php
public function store(): void
{
$user = auth()->user();
$user->email = $user->confirmEmailAfterRegistration();
$user->email_register = null;
$user->save();
}
Implementing these habits into your coding practices will improve the quality, stability, and maintainability of your code.
Thanks for reading. Happy coding🙂
photo: Photo by Fausto García-Menéndez Unsplash