You've already forked php-auth
generated from siteworxpro/Php-Template
Basics of auth
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 54s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 1m4s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m14s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m10s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m19s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Failing after 1m12s
Some checks failed
🧪✨ Tests Workflow / 🛡️ 🔒 License Check (push) Successful in 54s
🧪✨ Tests Workflow / 🧪 ✨ Database Migrations (push) Failing after 1m4s
🧪✨ Tests Workflow / 🛡️ 🔒 Library Audit (push) Successful in 1m14s
🧪✨ Tests Workflow / 📝 ✨ Code Lint (push) Successful in 1m10s
🧪✨ Tests Workflow / 🐙 🔍 Code Sniffer (push) Successful in 1m19s
🧪✨ Tests Workflow / 🧪 ✅ Unit Tests (push) Failing after 1m12s
This commit is contained in:
@@ -4,6 +4,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace Siteworxpro\App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Database\Eloquent\Model as ORM;
|
||||
use Siteworxpro\App\Helpers\Ulid;
|
||||
|
||||
@@ -12,8 +13,8 @@ use Siteworxpro\App\Helpers\Ulid;
|
||||
*
|
||||
* @package Siteworxpro\App\Models
|
||||
* @method static static|null find(string $id, array $columns = ['*'])
|
||||
* @method static where(string $column, string $operator = null, string $value = null, string $boolean = 'and')
|
||||
* @method static whereJsonContains(string $column, mixed $value, string $boolean = 'and', bool $not = false)
|
||||
* @method static Builder where(string $column, string $operator = null, string $value = null, string $boolean = 'and')
|
||||
* @method static Builder whereJsonContains(string $column, mixed $value, string $boolean = 'and', bool $not = false)
|
||||
*/
|
||||
abstract class Model extends ORM
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user