Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
4 / 4 |
PublicTrait | |
100.00% |
1 / 1 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
4 / 4 |
public | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
private | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
1 | <?php |
2 | |
3 | /* |
4 | * This file is part of the Symfony package. |
5 | * |
6 | * (c) Fabien Potencier <fabien@symfony.com> |
7 | * |
8 | * For the full copyright and license information, please view the LICENSE |
9 | * file that was distributed with this source code. |
10 | */ |
11 | |
12 | namespace Symfony\Component\DependencyInjection\Loader\Configurator\Traits; |
13 | |
14 | trait PublicTrait |
15 | { |
16 | /** |
17 | * @return $this |
18 | */ |
19 | final public function public(): self |
20 | { |
21 | $this->definition->setPublic(true); |
22 | |
23 | return $this; |
24 | } |
25 | |
26 | /** |
27 | * @return $this |
28 | */ |
29 | final public function private(): self |
30 | { |
31 | $this->definition->setPublic(false); |
32 | |
33 | return $this; |
34 | } |
35 | } |