File "Serializable.php"

Full Path: /var/www/drive/laravel-20251111223901/serializable-closure/src/Contracts/Serializable.php
File size: 353 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\SerializableClosure\Contracts;

interface Serializable
{
    /**
     * Resolve the closure with the given arguments.
     *
     * @return mixed
     */
    public function __invoke();

    /**
     * Gets the closure that got serialized/unserialized.
     *
     * @return \Closure
     */
    public function getClosure();
}