Skip to content

Commit 30fd341

Browse files
committed
Adding Propel2
1 parent 38a5fe3 commit 30fd341

File tree

131 files changed

+41
-27
lines changed

Some content is hidden

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

131 files changed

+41
-27
lines changed
File renamed without changes.

inProgress/Propel2/Base/CustomerQuery.php renamed to SOB/Propel2/Base/CustomerQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public function delete(?ConnectionInterface $con = null) : int
214214

215215
// use transaction because $criteria could contain info
216216
// for more than one table or we could emulating ON DELETE CASCADE, etc.
217-
return $con->transaction(static function() use ($con, $criteria) {
217+
return $con->transaction(function() use ($con, $criteria) {
218218
$affectedRows = 0; // initialize var to track total num of affected rows
219219

220220
CustomerTableMap::removeInstanceFromPool($criteria);

inProgress/Propel2/Base/DaterecordQuery.php renamed to SOB/Propel2/Base/DaterecordQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function delete(?ConnectionInterface $con = null) : int
148148

149149
// use transaction because $criteria could contain info
150150
// for more than one table or we could emulating ON DELETE CASCADE, etc.
151-
return $con->transaction(static function() use ($con, $criteria) {
151+
return $con->transaction(function() use ($con, $criteria) {
152152
$affectedRows = 0; // initialize var to track total num of affected rows
153153

154154
DaterecordTableMap::removeInstanceFromPool($criteria);
File renamed without changes.

inProgress/Propel2/Base/EmployeePrivilegeQuery.php renamed to SOB/Propel2/Base/EmployeePrivilegeQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public function delete(?ConnectionInterface $con = null) : int
117117

118118
// use transaction because $criteria could contain info
119119
// for more than one table or we could emulating ON DELETE CASCADE, etc.
120-
return $con->transaction(static function() use ($con, $criteria) {
120+
return $con->transaction(function() use ($con, $criteria) {
121121
$affectedRows = 0; // initialize var to track total num of affected rows
122122

123123
EmployeePrivilegeTableMap::removeInstanceFromPool($criteria);

inProgress/Propel2/Base/EmployeeQuery.php renamed to SOB/Propel2/Base/EmployeeQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public function delete(?ConnectionInterface $con = null) : int
214214

215215
// use transaction because $criteria could contain info
216216
// for more than one table or we could emulating ON DELETE CASCADE, etc.
217-
return $con->transaction(static function() use ($con, $criteria) {
217+
return $con->transaction(function() use ($con, $criteria) {
218218
$affectedRows = 0; // initialize var to track total num of affected rows
219219

220220
EmployeeTableMap::removeInstanceFromPool($criteria);
File renamed without changes.

inProgress/Propel2/Base/ImageQuery.php renamed to SOB/Propel2/Base/ImageQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ public function delete(?ConnectionInterface $con = null) : int
130130

131131
// use transaction because $criteria could contain info
132132
// for more than one table or we could emulating ON DELETE CASCADE, etc.
133-
return $con->transaction(static function() use ($con, $criteria) {
133+
return $con->transaction(function() use ($con, $criteria) {
134134
$affectedRows = 0; // initialize var to track total num of affected rows
135135

136136
ImageTableMap::removeInstanceFromPool($criteria);

0 commit comments

Comments
 (0)