for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use Core\Model;
class UserModel extends Model{
public function getAuthorDetails(int $authorId)
{
return $this->getRowById($authorId);
}