for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Clase para manejar las regiones, tabla 'region'
*
* PHP version 7.1
* @category App
* @package Models
* @author Henry Stivens Adarme Muñoz <[email protected]>
* @copyright 2017
*/
class Region extends ActiveRecord
{
* Lista todas las regiones
* @return array
public function all()
return $this->find('order: nombre');
return $this->find('order: nombre')
ActiveRecord
array
}