Subversion-Projekte lars-tiefland.webanos.marine-sales.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
182 lars 1
<?php
2
 
3
namespace {{ namespace }};
4
 
5
use Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes;
6
 
7
class {{ class }} implements CastsInboundAttributes
8
{
9
    /**
10
     * Prepare the given value for storage.
11
     *
12
     * @param  \Illuminate\Database\Eloquent\Model  $model
13
     * @param  string  $key
14
     * @param  mixed  $value
15
     * @param  array  $attributes
16
     * @return mixed
17
     */
18
    public function set($model, string $key, $value, array $attributes)
19
    {
20
        return $value;
21
    }
22
}