Improve return types.

This commit is contained in:
kj 2023-04-22 05:32:37 -04:00
parent b326c8e1d0
commit d48f24ed98
3 changed files with 43 additions and 43 deletions

View File

@ -20,7 +20,7 @@ class Middleware {
* *
* @return mixed * @return mixed
*/ */
public static function next(Neuron $req) { public static function next(Neuron $req): mixed {
$next = array_pop($req->next); $next = array_pop($req->next);
return call_user_func_array($next, [$req]); return call_user_func_array($next, [$req]);
} }

View File

@ -214,10 +214,10 @@ class Model {
* Puede recibir un arreglo o un objeto que contiene los valores * Puede recibir un arreglo o un objeto que contiene los valores
* que tendrán sus atributos. * que tendrán sus atributos.
* *
* @return Model * @return static
* Retorna un objeto de la clase actual. * Retorna un objeto de la clase actual.
*/ */
protected static function getInstance(array $elem = []) : Model { protected static function getInstance(array $elem = []) : static {
$class = get_called_class(); $class = get_called_class();
$instance = new $class; $instance = new $class;
@ -368,9 +368,9 @@ class Model {
* @param array $columns * @param array $columns
* Columnas que se selecionarán en la consulta SQL. * Columnas que se selecionarán en la consulta SQL.
* *
* @return Model * @return static
*/ */
public static function select(array $columns) : Model { public static function select(array $columns) : static {
static::$querySelect['select'] = $columns; static::$querySelect['select'] = $columns;
return new static(); return new static();
@ -382,9 +382,9 @@ class Model {
* @param array $tables * @param array $tables
* Tablas que se selecionarán en la consulta SQL. * Tablas que se selecionarán en la consulta SQL.
* *
* @return Model * @return static
*/ */
public static function from(array $tables) : Model { public static function from(array $tables) : static {
static::$querySelect['from'] = join(', ', $tables); static::$querySelect['from'] = join(', ', $tables);
return new static(); return new static();
@ -406,9 +406,9 @@ class Model {
* (opcional) Se usa cuando $value es una columna o un valor que no requiere filtros * (opcional) Se usa cuando $value es una columna o un valor que no requiere filtros
* contra ataques SQLI (por defeco es false). * contra ataques SQLI (por defeco es false).
* *
* @return Model * @return static
*/ */
public static function where(string $column, string $operatorOrValue, string $value=null, bool $no_filter = false) : Model { public static function where(string $column, string $operatorOrValue, string $value=null, bool $no_filter = false) : static {
return static::and($column, $operatorOrValue, $value, $no_filter); return static::and($column, $operatorOrValue, $value, $no_filter);
} }
@ -428,9 +428,9 @@ class Model {
* (opcional) Se usa cuando $value es una columna o un valor que no requiere filtros * (opcional) Se usa cuando $value es una columna o un valor que no requiere filtros
* contra ataques SQLI (por defecto es false). * contra ataques SQLI (por defecto es false).
* *
* @return Model * @return static
*/ */
public static function and(string $column, string $operatorOrValue, string $value=null, bool $no_filter = false) : Model { public static function and(string $column, string $operatorOrValue, string $value=null, bool $no_filter = false) : static {
if (is_null($value)) { if (is_null($value)) {
$value = $operatorOrValue; $value = $operatorOrValue;
$operatorOrValue = '='; $operatorOrValue = '=';
@ -463,9 +463,9 @@ class Model {
* (opcional) Se usa cuando $value es una columna o un valor que no requiere filtros * (opcional) Se usa cuando $value es una columna o un valor que no requiere filtros
* contra ataques SQLI (por defecto es false). * contra ataques SQLI (por defecto es false).
* *
* @return Model * @return static
*/ */
public static function or(string $column, string $operatorOrValue, string $value=null, bool $no_filter = false) : Model { public static function or(string $column, string $operatorOrValue, string $value=null, bool $no_filter = false) : static {
if (is_null($value)) { if (is_null($value)) {
$value = $operatorOrValue; $value = $operatorOrValue;
$operatorOrValue = '='; $operatorOrValue = '=';
@ -494,9 +494,9 @@ class Model {
* @param bool $in * @param bool $in
* Define si se tienen que comprobar negativa o positivamente. * Define si se tienen que comprobar negativa o positivamente.
* *
* @return Model * @return static
*/ */
public static function where_in(string $column, array $arr, bool $in = true) : Model { public static function where_in(string $column, array $arr, bool $in = true) : static {
$arrIn = []; $arrIn = [];
foreach($arr as $value) { foreach($arr as $value) {
$arrIn[] = static::bindValue($value); $arrIn[] = static::bindValue($value);
@ -525,9 +525,9 @@ class Model {
* @param string $columnB * @param string $columnB
* (opcional) Columna a comparar para hacer el join. * (opcional) Columna a comparar para hacer el join.
* *
* @return Model * @return static
*/ */
public static function leftJoin(string $table, string $columnA, string $operatorOrColumnB, string $columnB = null) : Model { public static function leftJoin(string $table, string $columnA, string $operatorOrColumnB, string $columnB = null) : static {
if (is_null($columnB)) { if (is_null($columnB)) {
$columnB = $operatorOrColumnB; $columnB = $operatorOrColumnB;
$operatorOrColumnB = '='; $operatorOrColumnB = '=';
@ -553,9 +553,9 @@ class Model {
* @param string $columnB * @param string $columnB
* (opcional) Columna a comparar para hacer el join. * (opcional) Columna a comparar para hacer el join.
* *
* @return Model * @return static
*/ */
public static function rightJoin(string $table, string $columnA, string $operatorOrColumnB, string $columnB = null) : Model { public static function rightJoin(string $table, string $columnA, string $operatorOrColumnB, string $columnB = null) : static {
if (is_null($columnB)) { if (is_null($columnB)) {
$columnB = $operatorOrColumnB; $columnB = $operatorOrColumnB;
$operatorOrColumnB = '='; $operatorOrColumnB = '=';
@ -581,9 +581,9 @@ class Model {
* @param string $columnB * @param string $columnB
* (opcional) Columna a comparar para hacer el join. * (opcional) Columna a comparar para hacer el join.
* *
* @return Model * @return static
*/ */
public static function innerJoin(string $table, string $columnA, string $operatorOrColumnB, string $columnB = null) : Model { public static function innerJoin(string $table, string $columnA, string $operatorOrColumnB, string $columnB = null) : static {
if (is_null($columnB)) { if (is_null($columnB)) {
$columnB = $operatorOrColumnB; $columnB = $operatorOrColumnB;
$operatorOrColumnB = '='; $operatorOrColumnB = '=';
@ -600,9 +600,9 @@ class Model {
* @param array $arr * @param array $arr
* Columnas por las que se agrupará. * Columnas por las que se agrupará.
* *
* @return Model * @return static
*/ */
public static function groupBy(array $arr) : Model { public static function groupBy(array $arr) : static {
static::$querySelect['groupBy'] = join(', ', $arr); static::$querySelect['groupBy'] = join(', ', $arr);
return new static(); return new static();
} }
@ -616,9 +616,9 @@ class Model {
* @param int $quantity * @param int $quantity
* Define la cantidad máxima de filas a tomar. * Define la cantidad máxima de filas a tomar.
* *
* @return Model * @return static
*/ */
public static function limit(int $offsetOrQuantity, ?int $quantity = null) : Model { public static function limit(int $offsetOrQuantity, ?int $quantity = null) : static {
if (is_null($quantity)) if (is_null($quantity))
static::$querySelect['limit'] = $offsetOrQuantity; static::$querySelect['limit'] = $offsetOrQuantity;
else else
@ -637,9 +637,9 @@ class Model {
* (opcional) Define si el orden será de manera ascendente (ASC), * (opcional) Define si el orden será de manera ascendente (ASC),
* descendente (DESC) o aleatorio (RAND). * descendente (DESC) o aleatorio (RAND).
* *
* @return Model * @return static
*/ */
public static function orderBy(string $value, string $order = 'ASC') : Model { public static function orderBy(string $value, string $order = 'ASC') : static {
if ($value == "RAND") { if ($value == "RAND") {
static::$querySelect['orderBy'] = 'RAND()'; static::$querySelect['orderBy'] = 'RAND()';
return new static(); return new static();
@ -705,9 +705,9 @@ class Model {
* *
* @param mixed $id * @param mixed $id
* *
* @return Model|null * @return static|null
*/ */
public static function getById(mixed $id): ?Model { public static function getById(mixed $id): ?static {
return static::where(static::$primaryKey, $id)->getFirst(); return static::where(static::$primaryKey, $id)->getFirst();
} }
@ -720,9 +720,9 @@ class Model {
* @param array $in * @param array $in
* (opcional) Columnas en las que se va a buscar (null para buscar en todas). * (opcional) Columnas en las que se va a buscar (null para buscar en todas).
* *
* @return Model * @return static
*/ */
public static function search(string $search, array $in = null) : Model { public static function search(string $search, array $in = null) : static {
if ($in == null) { if ($in == null) {
$className = get_called_class(); $className = get_called_class();
$in = array_keys((new $className())->getVars()); $in = array_keys((new $className())->getVars());
@ -777,10 +777,10 @@ class Model {
* @param bool $resetQuery * @param bool $resetQuery
* (opcional) Indica si el query debe reiniciarse o no (por defecto es true). * (opcional) Indica si el query debe reiniciarse o no (por defecto es true).
* *
* @return Model|null * @return static|null
* Puede retornar un objeto Model o null. * Puede retornar un objeto static o null.
*/ */
public static function getFirst(bool $resetQuery = true): ?Model { // Devuelve null si no encuentra nada. public static function getFirst(bool $resetQuery = true): ?static { // Devuelve null si no encuentra nada.
static::limit(1); static::limit(1);
$instances = static::get($resetQuery); $instances = static::get($resetQuery);
return empty($instances) ? null : $instances[0]; return empty($instances) ? null : $instances[0];

View File

@ -109,11 +109,11 @@ class Router {
* @param mixed $callback * @param mixed $callback
* @param int $prioriry * @param int $prioriry
* *
* @return Router * @return static
* Devuelve un enlace estático. * Devuelve un enlace estático.
*/ */
public static function middleware($callback, int $priority = null): Router { public static function middleware($callback, int $priority = null): static {
if (!isset(static::$last)) if (!isset(static::$last))
return new static(); return new static();
@ -179,10 +179,10 @@ class Router {
* @param mixed $callback * @param mixed $callback
* Callback que será llamado cuando la ruta configurada en $path coincida. * Callback que será llamado cuando la ruta configurada en $path coincida.
* *
* @return Router * @return static
* Devuelve un enlace estático. * Devuelve un enlace estático.
*/ */
public static function get(string $path, $callback): Router { public static function get(string $path, $callback): static {
static::$get[] = static::parse($path, $callback); static::$get[] = static::parse($path, $callback);
static::$last = ['get', count(static::$get)-1]; static::$last = ['get', count(static::$get)-1];
return new static(); return new static();
@ -197,10 +197,10 @@ class Router {
* @param mixed $callback * @param mixed $callback
* Callback que será llamado cuando la ruta configurada en $path coincida. * Callback que será llamado cuando la ruta configurada en $path coincida.
* *
* @return Router * @return static
* Devuelve un enlace estático. * Devuelve un enlace estático.
*/ */
public static function post(string $path, $callback): Router { public static function post(string $path, $callback): static {
static::$post[] = static::parse($path, $callback); static::$post[] = static::parse($path, $callback);
static::$last = ['post', count(static::$post)-1]; static::$last = ['post', count(static::$post)-1];
return new static(); return new static();
@ -215,11 +215,11 @@ class Router {
* @param mixed $callback * @param mixed $callback
* Callback que será llamado cuando la ruta configurada en $path coincida. * Callback que será llamado cuando la ruta configurada en $path coincida.
* *
* @return Router * @return static
* Devuelve un enlace estático * Devuelve un enlace estático
*/ */
public static function put(string $path, $callback): Router { public static function put(string $path, $callback): static {
static::$put[] = static::parse($path, $callback); static::$put[] = static::parse($path, $callback);
static::$last = ['put', count(static::$put)-1]; static::$last = ['put', count(static::$put)-1];
return new static(); return new static();
@ -237,7 +237,7 @@ class Router {
* @return static * @return static
* Devuelve un enlace estático * Devuelve un enlace estático
*/ */
public static function delete(string $path, $callback): Router { public static function delete(string $path, $callback): static {
static::$delete[] = static::parse($path, $callback); static::$delete[] = static::parse($path, $callback);
static::$last = ['delete', count(static::$delete)-1]; static::$last = ['delete', count(static::$delete)-1];
return new static(); return new static();