Completed
Push — master ( 80c0ca...82d23b )
by Dwain
04:32
created

Sensei__S   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 28
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A wrapper_start() 0 5 1
A wrapper_end() 0 10 1
1
<?php
2
/**
3
 * Class Sensei__S
4
 *
5
 * Responsible for wrapping for the underscores theme
6
 * with the correct markup
7
 *
8
 * @since 1.9.0
9
*/
10
Class Sensei__S {
11
12
    /**
13
     * Output opening wrappers
14
     * @since 1.9.0
15
     */
16
    public function wrapper_start(){ ?>
17
        <div id="primary" class="content-area">
18
            <main id="main" class="site-main" role="main">
19
20
    <?php }
21
22
    /**
23
     * Output closing wrappers
24
     *
25
     * @since 1.9.0
26
     */
27
    public function wrapper_end(){ ?>
28
29
            </main> <!-- main-site -->
30
          </div> <!-- content-area -->
31
32
	    <?php
33
34
        get_sidebar();
35
36
    }
37
} // end class
38