1 | <?php namespace Arcanesoft\Seo\ViewComposers; |
||
12 | class ViewComposer |
||
13 | { |
||
14 | /* ----------------------------------------------------------------- |
||
15 | | Properties |
||
16 | | ----------------------------------------------------------------- |
||
17 | */ |
||
18 | |||
19 | /** |
||
20 | * Caching time. |
||
21 | * |
||
22 | * @var int |
||
23 | */ |
||
24 | protected $minutes = 5; |
||
25 | |||
26 | /* ----------------------------------------------------------------- |
||
27 | | Other Methods |
||
28 | | ----------------------------------------------------------------- |
||
29 | */ |
||
30 | |||
31 | /** |
||
32 | * Cache the results. |
||
33 | * |
||
34 | * @param string $name |
||
35 | * @param \Closure $callback |
||
36 | * |
||
37 | * @return mixed |
||
38 | */ |
||
39 | protected function cacheResults($name, Closure $callback) |
||
43 | } |
||
44 |