HEX
Server: LiteSpeed
System: Linux s3.sitechai.com 4.18.0-553.51.1.lve.1.el8.x86_64 #1 SMP Wed May 14 14:34:57 UTC 2025 x86_64
User: workzeni (2217)
PHP: 8.1.32
Disabled: mail, show_source, system, shell_exec, passthru, exec, eval, shell
Upload Files
File: /home/workzeni/stream-flix.workzenix.com/vendor/pestphp/pest-plugin-laravel/src/Database.php
<?php

declare(strict_types=1);

namespace Pest\Laravel;

use Illuminate\Database\Connection;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Foundation\Testing\TestCase;

/**
 * Assert that a given where condition exists in the database.
 *
 * @return TestCase
 */
function assertDatabaseHas($table, array $data = [], ?string $connection = null)
{
    return test()->assertDatabaseHas(...func_get_args());
}

/**
 * Assert that a given where condition does not exist in the database.
 *
 * @return TestCase
 */
function assertDatabaseMissing($table, array $data = [], ?string $connection = null)
{
    return test()->assertDatabaseMissing(...func_get_args());
}

/**
 * Assert that the given table has no entries.
 *
 * @return TestCase
 */
function assertDatabaseEmpty($table, ?string $connection = null)
{
    return test()->assertDatabaseEmpty(...func_get_args());
}

/**
 * Assert the given model exists in the database.
 *
 * @return TestCase
 */
function assertModelExists(Model $model)
{
    return test()->assertModelExists(...func_get_args());
}

/**
 * Assert the given model does not exist in the database.
 *
 * @return TestCase
 */
function assertModelMissing(Model $model)
{
    return test()->assertModelMissing(...func_get_args());
}

/**
 * Assert the count of table entries.
 *
 * @return TestCase
 */
function assertDatabaseCount($table, int $count, ?string $connection = null)
{
    return test()->assertDatabaseCount(...func_get_args());
}

/**
 * Assert the given record has been "soft deleted".
 *
 * @param  Model|string  $table
 * @return TestCase
 */
function assertSoftDeleted($table, array $data = [], ?string $connection = null, string $deletedAtColumn = 'deleted_at')
{
    return test()->assertSoftDeleted(...func_get_args());
}

/**
 * Assert the given record has not been "soft deleted".
 *
 * @param  Model|string  $table
 * @return TestCase
 */
function assertNotSoftDeleted($table, array $data = [], ?string $connection = null, string $deletedAtColumn = 'deleted_at')
{
    return test()->assertNotSoftDeleted(...func_get_args());
}

/**
 * Determine if the argument is a soft deletable model.
 *
 * @param  mixed  $model
 */
function isSoftDeletableModel($model): bool
{
    return test()->isSoftDeletableModel(...func_get_args());
}

/**
 * Get the database connection.
 */
function getConnection(?string $connection = null): Connection
{
    return test()->getConnection(...func_get_args());
}

/**
 * Seed a given database connection.
 *
 * @return TestCase
 */
function seed(array|string $class = 'Database\\Seeders\\DatabaseSeeder')
{
    return test()->seed(...func_get_args());
}

/**
 * Specify the number of database queries that should occur throughout the test.
 *
 * @return TestCase
 */
function expectsDatabaseQueryCount(int $excepted, ?string $connection = null)
{
    return test()->expectsDatabaseQueryCount(...func_get_args());
}

/**
 * Cast a JSON string to a database compatible type.
 *
 * @return TestCase
 */
function castAsJson(array|object|string $value)
{
    return test()->castAsJson($value);
}