Skip to content

Commit e8ef753

Browse files
committed
Merge remote-tracking branch 'upstream/master' into bugfix/phpstan-lev2
2 parents 7dd359f + 776f746 commit e8ef753

17 files changed

+26
-29
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "propel/propel",
33
"type": "library",
4-
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP 5.5 and up.",
4+
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP.",
55
"keywords": [
66
"ORM",
77
"persistence",

resources/xsd/database.xsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@
646646
<xs:attribute name="namespace" type="php_namespace" use="optional">
647647
<xs:annotation>
648648
<xs:documentation xml:lang="en">
649-
The PHP 5.3 namespace to use for the generated model classes.
649+
The PHP namespace to use for the generated model classes.
650650
</xs:documentation>
651651
</xs:annotation>
652652
</xs:attribute>
@@ -844,7 +844,7 @@
844844
<xs:attribute name="namespace" type="php_namespace" use="optional">
845845
<xs:annotation>
846846
<xs:documentation xml:lang="en">
847-
The PHP 5.3 namespace to use for the generated model classes of the database. Can be overridden on a per-table basis.
847+
The PHP namespace to use for the generated model classes of the database. Can be overridden on a per-table basis.
848848
</xs:documentation>
849849
</xs:annotation>
850850
</xs:attribute>

src/Propel/Generator/Behavior/Validate/templates/objectGetValidationFailures.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Gets any ConstraintViolation objects that resulted from last call to validate().
44
*
55
*
6-
* @return object ConstraintViolationList
6+
* @return ConstraintViolationList
77
* @see validate()
88
*/
99
public function getValidationFailures()

src/Propel/Generator/Builder/Om/AbstractObjectBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ abstract class AbstractObjectBuilder extends AbstractOMBuilder
2626
/**
2727
* Adds the getter methods for the column values.
2828
* This is here because it is probably generic enough to apply to templates being generated
29-
* in different languages (e.g. PHP4 and PHP5).
29+
* in different PHP versions.
3030
* @param string $script The script will be modified in this method.
3131
*/
3232
protected function addColumnAccessorMethods(&$script)
@@ -73,7 +73,7 @@ protected function addColumnAccessorMethods(&$script)
7373
/**
7474
* Adds the mutator (setter) methods for setting column values.
7575
* This is here because it is probably generic enough to apply to templates being generated
76-
* in different languages (e.g. PHP4 and PHP5).
76+
* in different PHP versions.
7777
* @param string $script The script will be modified in this method.
7878
*/
7979
protected function addColumnMutatorMethods(&$script)

src/Propel/Generator/Builder/Om/ExtensionObjectBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace Propel\Generator\Builder\Om;
1212

1313
/**
14-
* Generates the empty PHP5 stub object class for user object model (OM).
14+
* Generates the empty stub object class for user object model (OM).
1515
*
1616
* This class produces the empty stub class that can be customized with application
1717
* business logic, custom behavior, etc.

src/Propel/Generator/Builder/Om/ExtensionQueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace Propel\Generator\Builder\Om;
1212

1313
/**
14-
* Generates the empty PHP5 stub class for object query
14+
* Generates the empty stub class for object query
1515
*
1616
* This class produces the empty stub class that can be customized with application
1717
* business logic, custom behavior, etc.

src/Propel/Generator/Builder/Om/ExtensionQueryInheritanceBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Propel\Generator\Exception\BuildException;
1515

1616
/**
17-
* Generates the empty PHP5 stub query class for use with single table inheritance.
17+
* Generates the empty stub query class for use with single table inheritance.
1818
*
1919
* This class produces the empty stub class that can be customized with
2020
* application business logic, custom behavior, etc.

src/Propel/Generator/Builder/Om/InterfaceBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace Propel\Generator\Builder\Om;
1212

1313
/**
14-
* Generates the empty PHP5 stub interface for user object model (OM).
14+
* Generates the empty stub interface for user object model (OM).
1515
*
1616
* This class produces the empty stub interface when the interface="" attribute is used
1717
* in the the schema xml.

src/Propel/Generator/Builder/Om/MultiExtendObjectBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use Propel\Generator\Model\Inheritance;
1515

1616
/**
17-
* Generates the empty PHP5 stub object class for use with inheritance in the
17+
* Generates the empty stub object class for use with inheritance in the
1818
* user object model (OM).
1919
*
2020
* This class produces the empty stub class that can be customized with

src/Propel/Generator/Builder/Om/ObjectBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
use Propel\Runtime\Exception\PropelException;
2727

2828
/**
29-
* Generates a PHP5 base Object class for user object model (OM).
29+
* Generates a base Object class for user object model (OM).
3030
*
3131
* This class produces the base object class (e.g. BaseMyTable) which contains
3232
* all the custom-built accessor and setter methods.

0 commit comments

Comments
 (0)