Security update for Core, with self-updated composer
[yaffs-website] / vendor / gabordemooij / redbean / RedBeanPHP / Cursor / PDOCursor.php
diff --git a/vendor/gabordemooij/redbean/RedBeanPHP/Cursor/PDOCursor.php b/vendor/gabordemooij/redbean/RedBeanPHP/Cursor/PDOCursor.php
deleted file mode 100644 (file)
index de6c1eb..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php
-
-namespace RedBeanPHP\Cursor;
-
-use RedBeanPHP\Cursor as Cursor;
-
-/**
- * PDO Database Cursor
- * Implementation of PDO Database Cursor.
- * Used by the BeanCollection to fetch one bean at a time.
- * The PDO Cursor is used by Query Writers to support retrieval
- * of large bean collections. For instance, this class is used to
- * implement the findCollection()/BeanCollection functionality.
- *
- * @file    RedBeanPHP/Cursor/PDOCursor.php
- * @author  Gabor de Mooij and the RedBeanPHP Community
- * @license BSD/GPLv2
- *
- * @copyright
- * (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community.
- * This source file is subject to the BSD/GPLv2 License that is bundled
- * with this source code in the file license.txt.
- */
-class PDOCursor implements Cursor
-{
-       /**
-        * @var PDOStatement
-        */
-       protected $res;
-
-       /**
-        * @var string
-        */
-       protected $fetchStyle;
-
-       /**
-        * Constructor, creates a new instance of a PDO Database Cursor.
-        *
-        * @param PDOStatement $res        the PDO statement
-        * @param string       $fetchStyle fetch style constant to use
-        *
-        * @return void
-        */
-       public function __construct( \PDOStatement $res, $fetchStyle )
-       {
-               $this->res = $res;
-               $this->fetchStyle = $fetchStyle;
-       }
-
-       /**
-        * @see Cursor::getNextItem
-        */
-       public function getNextItem()
-       {
-               return $this->res->fetch();
-       }
-
-       /**
-        * @see Cursor::close
-        */
-       public function close()
-       {
-               $this->res->closeCursor();
-       }
-}