Skip to content

Commit 5121cd8

Browse files
committed
Remove PHPDoc of namespaces getters
1 parent c91141e commit 5121cd8

File tree

1 file changed

+0
-70
lines changed

1 file changed

+0
-70
lines changed

src/Util/NamespacesHelper.php

Lines changed: 0 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -89,141 +89,71 @@ public function __construct(
8989
$this->validator = $validator ?? 'Validator\\';
9090
}
9191

92-
/**
93-
* Get command namespace.
94-
*
95-
* @return string
96-
*/
9792
public function getCommandNamespace(): string
9893
{
9994
return $this->trim($this->command);
10095
}
10196

102-
/**
103-
* Get controller namespace.
104-
*
105-
* @return string
106-
*/
10797
public function getControllerNamespace(): string
10898
{
10999
return $this->trim($this->controller);
110100
}
111101

112-
/**
113-
* Get entity namespace.
114-
*
115-
* @return string
116-
*/
117102
public function getEntityNamespace(): string
118103
{
119104
return $this->trim($this->entity);
120105
}
121106

122-
/**
123-
* Get fixtures namespace.
124-
*
125-
* @return string
126-
*/
127107
public function getFixturesNamespace(): string
128108
{
129109
return $this->trim($this->fixtures);
130110
}
131111

132-
/**
133-
* Get form namespace.
134-
*
135-
* @return string
136-
*/
137112
public function getFormNamespace(): string
138113
{
139114
return $this->trim($this->form);
140115
}
141116

142-
/**
143-
* Get functional_test namespace.
144-
*
145-
* @return string
146-
*/
147117
public function getFunctionalTestNamespace(): string
148118
{
149119
return $this->trim($this->functionalTest);
150120
}
151121

152-
/**
153-
* Get repository namespace.
154-
*
155-
* @return string
156-
*/
157122
public function getRepositoryNamespace(): string
158123
{
159124
return $this->trim($this->repository);
160125
}
161126

162-
/**
163-
* Get root namespace.
164-
*
165-
* @return string
166-
*/
167127
public function getRootNamespace(): string
168128
{
169129
return $this->trim($this->root);
170130
}
171131

172-
/**
173-
* Get security namespace.
174-
*
175-
* @return string
176-
*/
177132
public function getSecurityNamespace(): string
178133
{
179134
return $this->trim($this->security);
180135
}
181136

182-
/**
183-
* Get serializer namespace.
184-
*
185-
* @return string
186-
*/
187137
public function getSerializerNamespace(): string
188138
{
189139
return $this->trim($this->serializer);
190140
}
191141

192-
/**
193-
* Get subscriber namespace.
194-
*
195-
* @return string
196-
*/
197142
public function getSubscriberNamespace(): string
198143
{
199144
return $this->trim($this->subscriber);
200145
}
201146

202-
/**
203-
* Get twig namespace.
204-
*
205-
* @return string
206-
*/
207147
public function getTwigNamespace(): string
208148
{
209149
return $this->trim($this->twig);
210150
}
211151

212-
/**
213-
* Get unit_test namespace.
214-
*
215-
* @return string
216-
*/
217152
public function getUnitTestNamespace(): string
218153
{
219154
return $this->trim($this->unitTest);
220155
}
221156

222-
/**
223-
* Get validator namespace.
224-
*
225-
* @return string
226-
*/
227157
public function getValidatorNamespace(): string
228158
{
229159
return $this->trim($this->validator);

0 commit comments

Comments
 (0)