Skip to content

Commit

Permalink
Fix strict errors and missing imports in Sqlite.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Oct 16, 2012
1 parent b47744b commit 538c998
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions lib/Cake/Model/Datasource/Database/Sqlite.php
@@ -1,9 +1,5 @@
<?php
/**
* SQLite layer for DBO
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
Expand All @@ -12,13 +8,16 @@
*
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package Cake.Model.Datasource.Database
* @since CakePHP(tm) v 0.9.0
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
namespace Cake\Model\Datasource\Database;

use Cake\Error;
use Cake\Model\Datasource\DboSource;
use Cake\Model\Model;
use Cake\Model\Schema;
use Cake\Utility\String;
use \PDO;

/**
Expand Down

0 comments on commit 538c998

Please sign in to comment.