File "Constrainer-20250424184813.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/silber/bouncer/src/Database/Queries/Constrainer-20250424184813.php
File size: 1.23 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Silber\Bouncer\Constraints;

use Illuminate\Database\Eloquent\Model;

interface Constrainer
{
    /**
     * Create a new instance from the raw data.
     *
     * @return static
     */
    public static function fromData(array $data);

    /**
     * Get the JSON-able data of this object.
     *
     * @return array
     */
    public function data();

    /**
     * Determine whether the given entity/authority passes this constraint.
     *
     * @return bool
     */
    public function check(Model $entity, ?Model $authority = null);

    /**
     * Set the logical operator to use when checked after a previous constrainer.
     *
     * @param  string|null  $operator
     * @return $this|string
     */
    public function logicalOperator($operator = null);

    /**
     * Checks whether the logical operator is an "and" operator.
     *
     * @param  string  $operator
     */
    public function isAnd();

    /**
     * Checks whether the logical operator is an "and" operator.
     *
     * @param  string  $operator
     */
    public function isOr();

    /**
     * Determine whether the given constrainer is equal to this object.
     *
     * @return bool
     */
    public function equals(Constrainer $constrainer);
}