Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
namespace Laravel\SerializableClosure\Contracts;
4
 
5
interface Serializable
6
{
7
    /**
8
     * Resolve the closure with the given arguments.
9
     *
10
     * @return mixed
11
     */
12
    public function __invoke();
13
 
14
    /**
15
     * Gets the closure that got serialized/unserialized.
16
     *
17
     * @return \Closure
18
     */
19
    public function getClosure();
20
}