Issues (115)

src/Root/Root.php (1 issue)

Labels
Severity
1
<?php
2
/*
3
 * citeproc-php
4
 *
5
 * @link        http://github.com/seboettg/citeproc-php for the source repository
6
 * @copyright   Copyright (c) 2017 Sebastian Böttger.
7
 * @license     https://opensource.org/licenses/MIT
8
 */
9
10
namespace Seboettg\CiteProc\Root;
11
12
use Seboettg\CiteProc\Style\InheritableNameAttributesTrait;
13
14
/**
15
 * Class Root
16
 * @package Seboettg\CiteProc\Style
17
 * @author Sebastian Böttger <[email protected]>
18
 */
19
class Root
20
{
21
    use InheritableNameAttributesTrait;
0 ignored issues
show
The trait Seboettg\CiteProc\Style\...ableNameAttributesTrait requires the property $parent which is not provided by Seboettg\CiteProc\Root\Root.
Loading history...
22
}
23