Skip to content

Commit 0287e8d

Browse files
mbabkerfranmomu
authored andcommitted
Update trait doc blocks to remove outdated PHP version info and to clarify the types of mapping configurations they provide
1 parent f5b6385 commit 0287e8d

16 files changed

+52
-19
lines changed

src/Blameable/Traits/Blameable.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
namespace Gedmo\Blameable\Traits;
1111

1212
/**
13-
* Blameable Trait, usable with PHP >= 5.4
13+
* Trait for blamable objects.
14+
*
15+
* This implementation does not provide any mapping configurations.
1416
*
1517
* @author David Buchmann <[email protected]>
1618
*/

src/Blameable/Traits/BlameableDocument.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
use Gedmo\Mapping\Annotation as Gedmo;
1515

1616
/**
17-
* Blameable Trait, usable with PHP >= 5.4
17+
* Trait for blamable objects.
18+
*
19+
* This implementation provides a mapping configuration for the Doctrine MongoDB ODM.
1820
*
1921
* @author David Buchmann <[email protected]>
2022
*/

src/Blameable/Traits/BlameableEntity.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
use Gedmo\Mapping\Annotation as Gedmo;
1414

1515
/**
16-
* Blameable Trait, usable with PHP >= 5.4
16+
* Trait for blamable objects.
17+
*
18+
* This implementation provides a mapping configuration for the Doctrine ORM.
1719
*
1820
* @author David Buchmann <[email protected]>
1921
*/

src/IpTraceable/Traits/IpTraceable.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
namespace Gedmo\IpTraceable\Traits;
1111

1212
/**
13-
* IpTraceable Trait, usable with PHP >= 5.4
13+
* Trait for IP traceable objects.
14+
*
15+
* This implementation does not provide any mapping configurations.
1416
*
1517
* @author Pierre-Charles Bertineau <[email protected]>
1618
*/

src/IpTraceable/Traits/IpTraceableDocument.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
use Gedmo\Mapping\Annotation as Gedmo;
1515

1616
/**
17-
* IpTraceable Trait, usable with PHP >= 5.4
17+
* Trait for IP traceable objects.
18+
*
19+
* This implementation provides a mapping configuration for the Doctrine MongoDB ODM.
1820
*
1921
* @author Pierre-Charles Bertineau <[email protected]>
2022
*/

src/IpTraceable/Traits/IpTraceableEntity.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
use Gedmo\Mapping\Annotation as Gedmo;
1414

1515
/**
16-
* IpTraceable Trait, usable with PHP >= 5.4
16+
* Trait for IP traceable objects.
17+
*
18+
* This implementation provides a mapping configuration for the Doctrine ORM.
1719
*
1820
* @author Pierre-Charles Bertineau <[email protected]>
1921
*/

src/SoftDeleteable/Traits/SoftDeleteable.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@
1010
namespace Gedmo\SoftDeleteable\Traits;
1111

1212
/**
13-
* A generic trait to use on your self-deletable entities.
14-
* There is no mapping information defined in this trait.
13+
* Trait for soft-deletable objects.
14+
*
15+
* This implementation does not provide any mapping configurations.
1516
*
1617
* @author Wesley van Opdorp <[email protected]>
1718
*/

src/SoftDeleteable/Traits/SoftDeleteableDocument.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
use Doctrine\ODM\MongoDB\Types\Type;
1414

1515
/**
16-
* A soft deletable trait you can apply to your MongoDB entities.
17-
* Includes default annotation mapping.
16+
* Trait for soft-deletable objects.
17+
*
18+
* This implementation provides a mapping configuration for the Doctrine MongoDB ODM.
1819
*
1920
* @author Wesley van Opdorp <[email protected]>
2021
*/

src/SoftDeleteable/Traits/SoftDeleteableEntity.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@
1414
use Doctrine\ORM\Mapping as ORM;
1515

1616
/**
17-
* A soft deletable trait you can apply to your Doctrine ORM entities.
18-
* Includes default annotation mapping.
17+
* Trait for soft-deletable objects.
18+
*
19+
* This implementation provides a mapping configuration for the Doctrine ORM.
1920
*
2021
* @author Wesley van Opdorp <[email protected]>
2122
*/

src/Timestampable/Traits/Timestampable.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
namespace Gedmo\Timestampable\Traits;
1111

1212
/**
13-
* Timestampable Trait, usable with PHP >= 5.4
13+
* Trait for timestampable objects.
14+
*
15+
* This implementation does not provide any mapping configurations.
1416
*
1517
* @author Gediminas Morkevicius <[email protected]>
1618
*/

0 commit comments

Comments
 (0)