Skip to content

Commit 2bed50c

Browse files
authored
Merge pull request #28 from derjumpy/master
Add support to use traits in PhpClass
2 parents d26832b + 069079b commit 2bed50c

File tree

3 files changed

+122
-2
lines changed

3 files changed

+122
-2
lines changed

src/PhpClass.php

+32-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ public function getProperties()
3434
/** @var PhpConstant[] */
3535
private $constants = array();
3636

37+
/** @var PhpTrait[] */
38+
private $traits = array();
39+
3740
private function renderImplements()
3841
{
3942
if ($this->implements) {
@@ -52,8 +55,8 @@ private function renderImplements()
5255

5356
protected function toString()
5457
{
55-
$content = $this->renderConstants() . $this->renderProperties()
56-
. $this->renderMethods();
58+
$content = $this->renderTraits() . $this->renderConstants()
59+
. $this->renderProperties() . $this->renderMethods();
5760

5861
$content = $this->indentLines(trim($content));
5962

@@ -130,6 +133,33 @@ public function addConstant(PhpConstant $constant)
130133
return $this;
131134
}
132135

136+
/**
137+
* Adds a new trait to the list of traits
138+
*
139+
* @param PhpTrait $trait
140+
* @throws Exception if a trait already exists with same name
141+
* @return self
142+
*/
143+
public function addTrait(PhpTrait $trait)
144+
{
145+
if (!array_key_exists($trait->getName(), $this->traits)) {
146+
$this->traits[$trait->getName()] = $trait;
147+
} else {
148+
throw new Exception('Duplicate trait');
149+
}
150+
151+
return $this;
152+
}
153+
154+
private function renderTraits()
155+
{
156+
$result = '';
157+
foreach ($this->traits as $trait) {
158+
$result .= $trait->render();
159+
}
160+
return $result;
161+
}
162+
133163
private function renderIsAbstract()
134164
{
135165
if ($this->isAbstract) {

src/PhpTrait.php

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
<?php
2+
3+
namespace Swaggest\PhpCodeBuilder;
4+
5+
use Swaggest\PhpCodeBuilder\Traits\Description;
6+
7+
class PhpTrait extends PhpTemplate
8+
{
9+
use Description;
10+
11+
/** @var string */
12+
protected $name;
13+
14+
/**
15+
* PhpTrait constructor.
16+
* @param string $name
17+
*/
18+
public function __construct($name)
19+
{
20+
$this->name = $name;
21+
}
22+
23+
/**
24+
* @return string
25+
*/
26+
public function getName()
27+
{
28+
return $this->name;
29+
}
30+
31+
protected function toString()
32+
{
33+
return <<<PHP
34+
{$this->renderDescriptionAsPhpDoc()}use {$this->name};
35+
36+
37+
PHP;
38+
}
39+
}

tests/src/PHPUnit/ClassTest.php

+51
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
use Swaggest\PhpCodeBuilder\PhpFunction;
99
use Swaggest\PhpCodeBuilder\PhpNamedVar;
1010
use Swaggest\PhpCodeBuilder\PhpStdType;
11+
use Swaggest\PhpCodeBuilder\PhpTrait;
1112

1213
class ClassTest extends \PHPUnit_Framework_TestCase
1314
{
@@ -37,9 +38,20 @@ public function testBasic()
3738
->setDescription('A sample method')
3839
);
3940

41+
$class->addTrait(
42+
(new PhpTrait(
43+
'\Foo\Bar'
44+
))->setDescription('A sample trait usage')
45+
);
46+
4047
$expected = <<<'PHP'
4148
class Uno
4249
{
50+
/**
51+
* A sample trait usage
52+
*/
53+
use \Foo\Bar;
54+
4355
/** @var string */
4456
private $some;
4557
@@ -58,4 +70,43 @@ private function process(My\Test\Uno $hello)
5870
PHP;
5971
$this->assertSame($expected, (string)$class);
6072
}
73+
74+
public function testInitTrait()
75+
{
76+
$trait = new PhpTrait('\Foo\Bar');
77+
78+
$this->assertInstanceOf(PhpTrait::class, $trait, 'Initiatet correct Class');
79+
$this->assertSame($trait->getName(), '\Foo\Bar', 'Saved the correct name of the trait');
80+
}
81+
82+
public function testTraitOutput()
83+
{
84+
$trait = new PhpTrait('\Foo\Bar');
85+
$this->assertSame($trait->__toString(), <<<'PHP'
86+
use \Foo\Bar;
87+
88+
89+
PHP
90+
);
91+
92+
$trait->setDescription('A sample trait.');
93+
$this->assertSame($trait->__toString(), <<<'PHP'
94+
/**
95+
* A sample trait.
96+
*/
97+
use \Foo\Bar;
98+
99+
100+
PHP
101+
);
102+
}
103+
104+
public function testThrowExceptionOnDuplicateTrait()
105+
{
106+
$this->expectException(\Swaggest\PhpCodeBuilder\Exception::class);
107+
108+
$class = new PhpClass();
109+
$class->addTrait(new PhpTrait('\Foo\Bar'));
110+
$class->addTrait(new PhpTrait('\Foo\Bar'));
111+
}
61112
}

0 commit comments

Comments
 (0)