public function getAll()

in workshop/05_Refactoring/04_Extract_Constant.php [22:26]


    public function getAll()
    {
        $db = new Db();
        return $db->getAll('SELECT * FROM customer', 15);
    }