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\Support;
4
 
5
class SelfReference
6
{
7
    /**
8
     * The unique hash representing the object.
9
     *
10
     * @var string
11
     */
12
    public $hash;
13
 
14
    /**
15
     * Creates a new self reference instance.
16
     *
17
     * @param  string  $hash
18
     * @return void
19
     */
20
    public function __construct($hash)
21
    {
22
        $this->hash = $hash;
23
    }
24
}