PremailerCompiler   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 15
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A compile() 0 4 1
1
<?php namespace Luminaire\Premailer\Laravel;
2
3
/**
4
 * Created by Sublime Text 3
5
 *
6
 * @user     Kevin Tanjung
7
 * @website  http://kevintanjung.github.io
8
 * @email    [email protected]
9
 * @date     04/08/2016
10
 * @time     11:34
11
 */
12
13
use Illuminate\View\Compilers\Compiler;
14
use Illuminate\View\Compilers\CompilerInterface;
15
use Illuminate\View\Engines\CompilerEngine;
16
17
/**
18
 * The "Premailer" view compiler class
19
 *
20
 * @package  \Luminaire\Premailer\Laravel
21
 */
22
class PremailerCompiler extends Compiler implements CompilerInterface
23
{
24
25
    /**
26
     * Compile the view at the given path.
27
     *
28
     * @param  string  $path
29
     * @return void
30
     */
31
    public function compile($path)
32
    {
33
34
    }
35
36
}
37