Skip to content

Commit 9cf3396

Browse files
committed
Remove unnecessary file level docblocks
Signed-off-by: Maurício Meneghini Fauth <[email protected]>
1 parent b764a67 commit 9cf3396

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+47
-271
lines changed

src/Component.php

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,4 @@
11
<?php
2-
/**
3-
* Defines a component that is later extended to parse specialized components or
4-
* keywords.
5-
*
6-
* There is a small difference between *Component and *Keyword classes: usually,
7-
* *Component parsers can be reused in multiple situations and *Keyword parsers
8-
* count on the *Component classes to do their job.
9-
*/
102

113
declare(strict_types=1);
124

@@ -16,8 +8,12 @@
168
use Stringable;
179

1810
/**
19-
* A component (of a statement) is a part of a statement that is common to
20-
* multiple query types.
11+
* Defines a component that is later extended to parse specialized components or keywords.
12+
*
13+
* There is a small difference between *Component and *Keyword classes: usually, *Component parsers can be reused in
14+
* multiple situations and *Keyword parsers count on the *Component classes to do their job.
15+
*
16+
* A component (of a statement) is a part of a statement that is common to multiple query types.
2117
*/
2218
abstract class Component implements Stringable
2319
{

src/Components/AlterOperation.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* Parses an alter operation.
4-
*/
52

63
declare(strict_types=1);
74

src/Components/Array2d.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* `VALUES` keyword parser.
4-
*/
52

63
declare(strict_types=1);
74

src/Components/ArrayObj.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* Parses an array.
4-
*/
52

63
declare(strict_types=1);
74

src/Components/CaseExpression.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* Parses a reference to a CASE expression.
4-
*/
52

63
declare(strict_types=1);
74

src/Components/Condition.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* `WHERE` keyword parser.
4-
*/
52

63
declare(strict_types=1);
74

src/Components/CreateDefinition.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
<?php
2-
/**
3-
* Parses the create definition of a column or a key.
4-
*
5-
* Used for parsing `CREATE TABLE` statement.
6-
*/
72

83
declare(strict_types=1);
94

src/Components/DataType.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* Parses a data type.
4-
*/
52

63
declare(strict_types=1);
74

src/Components/Expression.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
<?php
2-
/**
3-
* Parses a reference to an expression (column, table or database name, function
4-
* call, mathematical expression, etc.).
5-
*/
62

73
declare(strict_types=1);
84

src/Components/ExpressionArray.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
<?php
2-
/**
3-
* Parses a list of expressions delimited by a comma.
4-
*/
52

63
declare(strict_types=1);
74

0 commit comments

Comments
 (0)