Revision: 290
http://sourceforge.net/p/beeframework/code/290
Author: m_plomer
Date: 2015-02-25 11:08:06 +0000 (Wed, 25 Feb 2015)
Log Message:
-----------
- fixed wrong class file name
Added Paths:
-----------
trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumnResultSetExtractor.php
Removed Paths:
-------------
trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumn.php
Deleted: trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumn.php
===================================================================
--- trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumn.php 2015-02-25 10:57:59 UTC (rev 289)
+++ trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumn.php 2015-02-25 11:08:06 UTC (rev 290)
@@ -1,32 +0,0 @@
-<?php
-namespace Bee\Persistence\Pdo\ResultSetExtractor;
-
-/*
- * Copyright 2008-2015 the original author or authors.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-use PDO;
-use PDOStatement;
-
-/**
- * Class SingleColumnResultSetExtractor
- * @package Bee\Persistence\Pdo\ResultSetExtractor
- *
- * todo: check feasibility. Remove if usages are scarce enough to replace them with closures
- */
-class SingleColumnResultSetExtractor {
- public function __invoke(PDOStatement $rs) {
- return $rs->fetchAll(PDO::FETCH_COLUMN);
- }
-}
\ No newline at end of file
Copied: trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumnResultSetExtractor.php (from rev 289, trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumn.php)
===================================================================
--- trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumnResultSetExtractor.php (rev 0)
+++ trunk/framework/Bee/Persistence/Pdo/ResultSetExtractor/SingleColumnResultSetExtractor.php 2015-02-25 11:08:06 UTC (rev 290)
@@ -0,0 +1,32 @@
+<?php
+namespace Bee\Persistence\Pdo\ResultSetExtractor;
+
+/*
+ * Copyright 2008-2015 the original author or authors.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+use PDO;
+use PDOStatement;
+
+/**
+ * Class SingleColumnResultSetExtractor
+ * @package Bee\Persistence\Pdo\ResultSetExtractor
+ *
+ * todo: check feasibility. Remove if usages are scarce enough to replace them with closures
+ */
+class SingleColumnResultSetExtractor {
+ public function __invoke(PDOStatement $rs) {
+ return $rs->fetchAll(PDO::FETCH_COLUMN);
+ }
+}
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|