I all, I'm just introducing to Phalcon but I'm facing with a tricky problem. I've those simple codes (taken from the tutorial https://docs.phalcon.io/en/latest/reference/models.html) but every time I implement the Model it says:
class Robots must be declared abstract or implement methods 'getConnectionService(), setForceExists() etc..'
And the code is just this:
<?php
/**
* Created by PhpStorm.
* User: carloventrella
* Date: 29/08/15
* Time: 12:11
*/
use Phalcon\Mvc\Model;
class Robots extends Model{
}
?>
And even if I try to ignore it and to execut an http request it give me
Can't obtain model's source from models list: 'Robots', when preparing: SELECT * FROM robots ORDER BY name
Any ideas?