Skip to content

Commit 64f14bc

Browse files
committed
Update doc blocks
1 parent dcacc95 commit 64f14bc

24 files changed

+51
-49
lines changed

src/LightQL/Annotations/AutoIncrementAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
*
4343
* @usage('property' => true, 'inherited' => true)
4444
*
45-
* @category Annotation
45+
* @category Annotations
4646
* @package LightQL
4747
* @author Nana Axel <ax.lnana@outlook.com>
4848
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/AutoIncrementAnnotation
4949
*/
5050
class AutoIncrementAnnotation extends Annotation
5151
{
52-
}
52+
}

src/LightQL/Annotations/ColumnAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*
4242
* @usage('property' => true, 'inherited' => true)
4343
*
44-
* @category Annotation
44+
* @category Annotations
4545
* @package LightQL
4646
* @author Nana Axel <ax.lnana@outlook.com>
4747
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/ColumnAnnotation
@@ -68,4 +68,4 @@ class ColumnAnnotation extends Annotation
6868
* @var mixed
6969
*/
7070
public $default = null;
71-
}
71+
}

src/LightQL/Annotations/EntityAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* @usage('class' => true, 'inherited' => true)
4545
*
46-
* @category Annotation
46+
* @category Annotations
4747
* @package LightQL
4848
* @author Nana Axel <ax.lnana@outlook.com>
4949
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/EntityAnnotation
@@ -63,4 +63,4 @@ class EntityAnnotation extends Annotation
6363
* @var integer
6464
*/
6565
public $fetchMode = Entity::FETCH_LAZY;
66-
}
66+
}

src/LightQL/Annotations/IdAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@
4141
*
4242
* @usage('property' => true, 'inherited' => true)
4343
*
44-
* @category Annotation
44+
* @category Annotations
4545
* @package LightQL
4646
* @author Nana Axel <ax.lnana@outlook.com>
4747
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/IdAnnotation
4848
*/
4949
class IdAnnotation extends Annotation
5050
{
51-
}
51+
}

src/LightQL/Annotations/ManyToManyAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*
4242
* @usage('property' => true, 'inherited' => true)
4343
*
44-
* @category Annotation
44+
* @category Annotations
4545
* @package LightQL
4646
* @author Nana Axel <ax.lnana@outlook.com>
4747
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/ManyToManyAnnotation
@@ -82,4 +82,4 @@ class ManyToManyAnnotation extends Annotation
8282
* @var string
8383
*/
8484
public $referencedColumn;
85-
}
85+
}

src/LightQL/Annotations/ManyToOneAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*
4242
* @usage('property' => true, 'inherited' => true)
4343
*
44-
* @category Annotation
44+
* @category Annotations
4545
* @package LightQL
4646
* @author Nana Axel <ax.lnana@outlook.com>
4747
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/ManyToOneAnnotation
@@ -68,4 +68,4 @@ class ManyToOneAnnotation extends Annotation
6868
* @var string
6969
*/
7070
public $referencedColumn;
71-
}
71+
}

src/LightQL/Annotations/NamedQueryAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* @usage('class' => true, 'multiple' => true, 'inherited' => true)
4545
*
46-
* @category Annotation
46+
* @category Annotations
4747
* @package LightQL
4848
* @author Nana Axel <ax.lnana@outlook.com>
4949
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/NamedQueryAnnotation
@@ -101,4 +101,4 @@ public function initAnnotation(array $properties)
101101
throw new AnnotationException(self::class . ' requires a (string) query property.');
102102
}
103103
}
104-
}
104+
}

src/LightQL/Annotations/NotNullAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
*
4343
* @usage('property' => true, 'inherited' => true)
4444
*
45-
* @category Annotation
45+
* @category Annotations
4646
* @package LightQL
4747
* @author Nana Axel <ax.lnana@outlook.com>
4848
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/NotNullAnnotation
4949
*/
5050
class NotNullAnnotation extends Annotation
5151
{
52-
}
52+
}

src/LightQL/Annotations/OneToManyAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
*
4242
* @usage('property' => true, 'inherited' => true)
4343
*
44-
* @category Annotation
44+
* @category Annotations
4545
* @package LightQL
4646
* @author Nana Axel <ax.lnana@outlook.com>
4747
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/OneToManyAnnotation
@@ -61,4 +61,4 @@ class OneToManyAnnotation extends Annotation
6161
* @var string
6262
*/
6363
public $mappedBy;
64-
}
64+
}

src/LightQL/Annotations/PersistenceUnitAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
*
4444
* @usage('property' => true, 'inherited' => true)
4545
*
46-
* @category Annotation
46+
* @category Annotations
4747
* @package LightQL
4848
* @author Nana Axel <ax.lnana@outlook.com>
4949
* @link http://lightql.na2axl.tk/docs/api/LightQL/Annotations/IdAnnotation
@@ -81,4 +81,4 @@ public function initAnnotation(array $properties)
8181
throw new AnnotationException(self::class . ' requires a (string) name property.');
8282
}
8383
}
84-
}
84+
}

0 commit comments

Comments
 (0)