/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
laravel
/
serializable-closure
/
src
/
Contracts
/
Upload File
HOME
<?php namespace Laravel\SerializableClosure\Contracts; interface Signer { /** * Sign the given serializable. * * @param string $serializable * @return array */ public function sign($serializable); /** * Verify the given signature. * * @param array $signature * @return bool */ public function verify($signature); }