File "Serializable.php"
Full Path: /home/amervokv/ecomlive.net/wp-content/plugins/elementor/vendor_prefixed/laravel/serializable-closure/src/Contracts/Serializable.php
File size: 366 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementorDeps\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();
}