Skip to content

Commit 78164f6

Browse files
committed
Update code structure.
Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 45dc28f commit 78164f6

File tree

4 files changed

+0
-15
lines changed

4 files changed

+0
-15
lines changed

.php_cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ return PhpCsFixer\Config::create()
1515
'no_extra_consecutive_blank_lines' => false,
1616
'no_unneeded_control_parentheses' => false,
1717
'not_operator_with_successor_space' => true,
18-
'no_superfluous_phpdoc_tags' => false,
1918
'ordered_imports' => ['sortAlgorithm' => 'alpha'],
2019
'phpdoc_align' => false,
2120
'phpdoc_no_empty_return' => false,

src/Xml/Document.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ class Document extends BaseDocument
1616

1717
/**
1818
* Construct a new document.
19-
*
20-
* @param \Illuminate\Contracts\Container\Container $app
2119
*/
2220
public function __construct(Container $app)
2321
{
@@ -26,11 +24,6 @@ public function __construct(Container $app)
2624

2725
/**
2826
* Make filter resolver.
29-
*
30-
* @param string $class
31-
* @param string $method
32-
*
33-
* @return array
3427
*/
3528
protected function makeFilterResolver(string $class, string $method): array
3629
{
@@ -40,7 +33,6 @@ protected function makeFilterResolver(string $class, string $method): array
4033
/**
4134
* Call filter to parse the value.
4235
*
43-
* @param callable $resolver
4436
* @param mixed $value
4537
*
4638
* @return mixed

src/Xml/Reader.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ class Reader extends BaseReader
1010
/**
1111
* Provides SimpleXMLElement to document.
1212
*
13-
* @param \SimpleXMLElement $xml
14-
*
1513
* @return \Laravie\Parser\Document
1614
*/
1715
public function via(SimpleXMLElement $xml)

tests/Feature/TestCase.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ abstract class TestCase extends Testbench
1010
* Get package aliases.
1111
*
1212
* @param \Illuminate\Foundation\Application $app
13-
*
14-
* @return array
1513
*/
1614
protected function getPackageAliases($app): array
1715
{
@@ -24,8 +22,6 @@ protected function getPackageAliases($app): array
2422
* Get package providers.
2523
*
2624
* @param \Illuminate\Foundation\Application $app
27-
*
28-
* @return array
2925
*/
3026
protected function getPackageProviders($app): array
3127
{

0 commit comments

Comments
 (0)