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

Sensei__S::wrapper_start()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 5
rs 9.4286
cc 1
eloc 3
nc 1
nop 0
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