Version 3 #1
10
README.md
10
README.md
@ -32,7 +32,7 @@ Create a connection array or object similar to this:
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
$params = array(
|
$params = array(
|
||||||
'type' => 'mysql', // mysql, pgsql, firebird, sqlite
|
'type' => 'mysql', // mysql, pgsql, sqlite
|
||||||
'host' => 'localhost', // address or socket
|
'host' => 'localhost', // address or socket
|
||||||
'user' => 'root',
|
'user' => 'root',
|
||||||
'pass' => '',
|
'pass' => '',
|
||||||
@ -43,7 +43,7 @@ $params = array(
|
|||||||
// SQLite
|
// SQLite
|
||||||
'file' => '/path/to/db/file',
|
'file' => '/path/to/db/file',
|
||||||
|
|
||||||
// Optional paramaters
|
// Optional parameters
|
||||||
'prefix' => 'tbl_', // Database table prefix
|
'prefix' => 'tbl_', // Database table prefix
|
||||||
'alias' => 'old' // Connection name for the Query function
|
'alias' => 'old' // Connection name for the Query function
|
||||||
);
|
);
|
||||||
@ -119,8 +119,10 @@ ORDER BY "val" DESC
|
|||||||
LIMIT 3 OFFSET 1
|
LIMIT 3 OFFSET 1
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The query execution methods `get`, `getWhere`, `insert`,
|
||||||
To retrieve the results of a query, use the PDO method [fetch](http://php.net/manual/en/pdostatement.fetch.php) and/or [fetchAll](http://php.net/manual/en/pdostatement.fetchall.php).
|
`insertBatch`,`update`, and `delete` return a native [PDOStatemnt](http://php.net/manual/en/class.pdostatement.php) object.
|
||||||
|
To retrieve the results of a query, use the PDOStatement method [fetch](http://php.net/manual/en/pdostatement.fetch.php) and/or
|
||||||
|
[fetchAll](http://php.net/manual/en/pdostatement.fetchall.php).
|
||||||
|
|
||||||
```php
|
```php
|
||||||
<?php
|
<?php
|
||||||
|
@ -41,6 +41,26 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span class="unavailable">No description available</span>
|
||||||
|
</td>
|
||||||
|
<td class="testresult-EMPTY">EMPTY
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<span class="unavailable">No description available</span>
|
||||||
|
</td>
|
||||||
|
<td class="testresult-EMPTY">EMPTY
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="classes/Exception.html">Exception</a>
|
<a href="classes/Exception.html">Exception</a>
|
||||||
@ -95,14 +115,6 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<a href="classes/Query_BadDBDriverException.html">BadDBDriverException</a>
|
|
||||||
</td>
|
|
||||||
<td>Generic exception for bad drivers</td>
|
|
||||||
<td class="testresult-EMPTY">EMPTY
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<a href="classes/Query_ConnectionManager.html">ConnectionManager</a>
|
<a href="classes/Query_ConnectionManager.html">ConnectionManager</a>
|
||||||
@ -290,6 +302,44 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="container">
|
||||||
|
<h2 id="Query_Exception">\Query\Exception</h2>
|
||||||
|
<table class="styled">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Name</th>
|
||||||
|
<th>Description</th>
|
||||||
|
<th/>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="classes/Query_Exception_BadDBDriverException.html">BadDBDriverException</a>
|
||||||
|
</td>
|
||||||
|
<td>Generic exception for bad drivers</td>
|
||||||
|
<td class="testresult-EMPTY">EMPTY
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="classes/Query_Exception_NonExistentConnectionException.html">NonExistentConnectionException</a>
|
||||||
|
</td>
|
||||||
|
<td>Exception for missing database connection</td>
|
||||||
|
<td class="testresult-EMPTY">EMPTY
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a href="classes/Query_Exception_NotImplementedException.html">NotImplementedException</a>
|
||||||
|
</td>
|
||||||
|
<td>Exception for non-implemented method</td>
|
||||||
|
<td class="testresult-EMPTY">EMPTY
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
124
apiDocumentation/classes/BadFunctionCallException.html
Normal file
124
apiDocumentation/classes/BadFunctionCallException.html
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">BadFunctionCallException</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#hierarchy">Hierarchy</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#methods">Methods</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1 id="introduction"><small>\</small>BadFunctionCallException</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<h2 id="synopsis">Synopsis</h2>
|
||||||
|
<div class="synopsis">class BadFunctionCallException
|
||||||
|
extends <a title="LogicException" href="../classes/LogicException.html">LogicException</a>
|
||||||
|
{<br/><ul class="none"><li>// methods</li><li>public final string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/__toString.html">__toString</a>()
|
||||||
|
</li><li> final void <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/__clone.html">__clone</a>()
|
||||||
|
</li></ul>
|
||||||
|
|
||||||
|
}<br/></div>
|
||||||
|
<h2 id="hierarchy">Hierarchy</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h4>Extends</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a title="LogicException" href="../classes/LogicException.html">LogicException</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="methods">Methods</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::__clone</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">__clone</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>__clone</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code> function __clone()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>void</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::__toString</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">__toString</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>__toString</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function __toString()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getCode</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getCode</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getCode</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getCode()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>mixed</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getFile</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getFile</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getFile</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getFile()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getLine</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getLine</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getLine</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getLine()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>int</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getMessage</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getMessage</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getMessage</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getMessage()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getPrevious</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getPrevious</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getPrevious</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getPrevious()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>Throwable</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getTrace</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getTrace</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getTrace</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getTrace()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>array</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadFunctionCallException::getTraceAsString</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadFunctionCallException" href="../../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getTraceAsString</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadFunctionCallException::</small>getTraceAsString</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getTraceAsString()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
124
apiDocumentation/classes/BadMethodCallException.html
Normal file
124
apiDocumentation/classes/BadMethodCallException.html
Normal file
@ -0,0 +1,124 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">BadMethodCallException</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#hierarchy">Hierarchy</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#methods">Methods</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1 id="introduction"><small>\</small>BadMethodCallException</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<h2 id="synopsis">Synopsis</h2>
|
||||||
|
<div class="synopsis">class BadMethodCallException
|
||||||
|
extends <a title="BadFunctionCallException" href="../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
{<br/><ul class="none"><li>// methods</li><li>public final string <a title="BadMethodCallException" href="../classes/BadMethodCallException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="BadMethodCallException" href="../classes/BadMethodCallException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="BadMethodCallException" href="../classes/BadMethodCallException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="BadMethodCallException" href="../classes/BadMethodCallException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="BadMethodCallException" href="../classes/BadMethodCallException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="BadMethodCallException" href="../classes/BadMethodCallException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="BadMethodCallException" href="../classes/BadMethodCallException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="BadMethodCallException" href="../classes/BadMethodCallException/__toString.html">__toString</a>()
|
||||||
|
</li><li> final void <a title="BadMethodCallException" href="../classes/BadMethodCallException/__clone.html">__clone</a>()
|
||||||
|
</li></ul>
|
||||||
|
|
||||||
|
}<br/></div>
|
||||||
|
<h2 id="hierarchy">Hierarchy</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h4>Extends</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException.html">BadFunctionCallException</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="methods">Methods</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
84
apiDocumentation/classes/BadMethodCallException/__clone.html
Normal file
84
apiDocumentation/classes/BadMethodCallException/__clone.html
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::__clone</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">__clone</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>__clone</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code> function __clone()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>void</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::__toString</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">__toString</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>__toString</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function __toString()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
84
apiDocumentation/classes/BadMethodCallException/getCode.html
Normal file
84
apiDocumentation/classes/BadMethodCallException/getCode.html
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getCode</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getCode</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getCode</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getCode()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>mixed</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
84
apiDocumentation/classes/BadMethodCallException/getFile.html
Normal file
84
apiDocumentation/classes/BadMethodCallException/getFile.html
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getFile</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getFile</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getFile</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getFile()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
84
apiDocumentation/classes/BadMethodCallException/getLine.html
Normal file
84
apiDocumentation/classes/BadMethodCallException/getLine.html
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getLine</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getLine</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getLine</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getLine()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>int</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getMessage</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getMessage</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getMessage</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getMessage()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getPrevious</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getPrevious</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getPrevious</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getPrevious()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>Throwable</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getTrace</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getTrace</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getTrace</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getTrace()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>array</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,84 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - BadMethodCallException::getTraceAsString</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../../classes.html#"/>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a title="BadMethodCallException" href="../../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">getTraceAsString</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#return">Return</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1><small>BadMethodCallException::</small>getTraceAsString</h1>
|
||||||
|
<h4/>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="signature">Signature</h2>
|
||||||
|
<div class="styled synopsis">
|
||||||
|
<code>public function getTraceAsString()
|
||||||
|
</code>
|
||||||
|
</div>
|
||||||
|
<h2 id="return">Returns</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>string</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#history">History</a>
|
<a href="#history">History</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../source/ConnectionManager.php.html#line24">Source</a>
|
<a href="../source/ConnectionManager.php.html#line23">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -118,6 +118,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-26T13:39:30+00:00 (commit #<span title="3067976cb170a4c26d78b21167978bb6ab4fdb7e">3067976</span>)</h3>
|
<h3>2018-01-26T13:39:30+00:00 (commit #<span title="3067976cb170a4c26d78b21167978bb6ab4fdb7e">3067976</span>)</h3>
|
||||||
<div>
|
<div>
|
||||||
@ -268,16 +278,6 @@
|
|||||||
<pre class="wrapped">Fix a bunch of one line if statements</pre>
|
<pre class="wrapped">Fix a bunch of one line if statements</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<h3>2015-11-11T01:59:03+00:00 (commit #<span title="2613a1c8a44d7b94f427dce703114a25f38b15e8">2613a1c</span>)</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Author: Timothy J Warren (tim@timshomepage.net) /
|
|
||||||
Commiter: Timothy J Warren (tim@timshomepage.net)
|
|
||||||
</p>
|
|
||||||
<pre class="wrapped">Update lots of comments</pre>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line52">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line51">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line63">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line62">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line74">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line73">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line125">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line124">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -97,7 +97,7 @@
|
|||||||
<dl class="styled">
|
<dl class="styled">
|
||||||
<dt>
|
<dt>
|
||||||
<code>
|
<code>
|
||||||
<a title="Query\BadDBDriverException" href="../../classes/Query_BadDBDriverException.html">BadDBDriverException</a>
|
<a title="Query\Exception\BadDBDriverException" href="../../classes/Query_Exception_BadDBDriverException.html">BadDBDriverException</a>
|
||||||
</code>
|
</code>
|
||||||
</dt>
|
</dt>
|
||||||
<dd/>
|
<dd/>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line102">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line101">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -97,7 +97,7 @@
|
|||||||
<dl class="styled">
|
<dl class="styled">
|
||||||
<dt>
|
<dt>
|
||||||
<code>
|
<code>
|
||||||
<a title="InvalidArgumentException" href="../../classes/InvalidArgumentException.html">InvalidArgumentException</a>
|
<a title="Query\Exception\NonExistentConnectionException" href="../../classes/Query_Exception_NonExistentConnectionException.html">NonExistentConnectionException</a>
|
||||||
</code>
|
</code>
|
||||||
</dt>
|
</dt>
|
||||||
<dd/>
|
<dd/>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line85">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line84">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/ConnectionManager.php.html#line167">Source</a>
|
<a href="../../source/ConnectionManager.php.html#line166">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -97,7 +97,7 @@
|
|||||||
<dl class="styled">
|
<dl class="styled">
|
||||||
<dt>
|
<dt>
|
||||||
<code>
|
<code>
|
||||||
<a title="Query\BadDBDriverException" href="../../classes/Query_BadDBDriverException.html">BadDBDriverException</a>
|
<a title="Query\Exception\BadDBDriverException" href="../../classes/Query_Exception_BadDBDriverException.html">BadDBDriverException</a>
|
||||||
</code>
|
</code>
|
||||||
</dt>
|
</dt>
|
||||||
<dd/>
|
<dd/>
|
||||||
|
@ -86,8 +86,8 @@
|
|||||||
</li><li>public <span title="SQLInterface">SQLInterface</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/getSql.html">getSql</a>()
|
</li><li>public <span title="SQLInterface">SQLInterface</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/getSql.html">getSql</a>()
|
||||||
</li><li>public <span title="AbstractUtil">AbstractUtil</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/getUtil.html">getUtil</a>()
|
</li><li>public <span title="AbstractUtil">AbstractUtil</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/getUtil.html">getUtil</a>()
|
||||||
</li><li>public void <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/setTablePrefix.html">setTablePrefix</a>()
|
</li><li>public void <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/setTablePrefix.html">setTablePrefix</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/prepareQuery.html">prepareQuery</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/prepareQuery.html">prepareQuery</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/prepareExecute.html">prepareExecute</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/prepareExecute.html">prepareExecute</a>()
|
||||||
</li><li>public int <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/affectedRows.html">affectedRows</a>()
|
</li><li>public int <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/affectedRows.html">affectedRows</a>()
|
||||||
</li><li>public string <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/prefixTable.html">prefixTable</a>()
|
</li><li>public string <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/prefixTable.html">prefixTable</a>()
|
||||||
</li><li>public string <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/quoteTable.html">quoteTable</a>()
|
</li><li>public string <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/quoteTable.html">quoteTable</a>()
|
||||||
@ -109,7 +109,7 @@
|
|||||||
</li><li>public ?int <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/numRows.html">numRows</a>()
|
</li><li>public ?int <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/numRows.html">numRows</a>()
|
||||||
</li><li>public array <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/insertBatch.html">insertBatch</a>()
|
</li><li>public array <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/insertBatch.html">insertBatch</a>()
|
||||||
</li><li>public array <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/updateBatch.html">updateBatch</a>()
|
</li><li>public array <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/updateBatch.html">updateBatch</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/truncate.html">truncate</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/truncate.html">truncate</a>()
|
||||||
</li><li>public mixed <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/_quote.html">_quote</a>()
|
</li><li>public mixed <a title="Query\Drivers\AbstractDriver" href="../classes/Query_Drivers_AbstractDriver/_quote.html">_quote</a>()
|
||||||
</li></ul><ul class="none"><li>// Inherited methods from <span title="PDO">PDO</span></li><li>public void <a title="PDO" href="../classes/PDO/__construct.html">__construct</a>()
|
</li></ul><ul class="none"><li>// Inherited methods from <span title="PDO">PDO</span></li><li>public void <a title="PDO" href="../classes/PDO/__construct.html">__construct</a>()
|
||||||
</li><li>public bool <a title="PDO" href="../classes/PDO/beginTransaction.html">beginTransaction</a>()
|
</li><li>public bool <a title="PDO" href="../classes/PDO/beginTransaction.html">beginTransaction</a>()
|
||||||
@ -289,6 +289,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-26T13:39:30+00:00 (commit #<span title="3067976cb170a4c26d78b21167978bb6ab4fdb7e">3067976</span>)</h3>
|
<h3>2018-01-26T13:39:30+00:00 (commit #<span title="3067976cb170a4c26d78b21167978bb6ab4fdb7e">3067976</span>)</h3>
|
||||||
<div>
|
<div>
|
||||||
@ -441,16 +451,6 @@ This commit consists of patches automatically generated for this project on http
|
|||||||
<pre class="wrapped">Fix a bunch of one line if statements</pre>
|
<pre class="wrapped">Fix a bunch of one line if statements</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<h3>2015-11-11T01:59:03+00:00 (commit #<span title="2613a1c8a44d7b94f427dce703114a25f38b15e8">2613a1c</span>)</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Author: Timothy J Warren (tim@timshomepage.net) /
|
|
||||||
Commiter: Timothy J Warren (tim@timshomepage.net)
|
|
||||||
</p>
|
|
||||||
<pre class="wrapped">Update lots of comments</pre>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -162,6 +162,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-24T18:14:03+00:00 (commit #<span title="1d583bcc23524ad8840e4be580e549e8d6e549f4">1d583bc</span>)</h3>
|
<h3>2018-01-24T18:14:03+00:00 (commit #<span title="1d583bcc23524ad8840e4be580e549e8d6e549f4">1d583bc</span>)</h3>
|
||||||
<div>
|
<div>
|
||||||
@ -312,16 +322,6 @@
|
|||||||
<pre class="wrapped">Update foreign key driver methods to return the same kind of information</pre>
|
<pre class="wrapped">Update foreign key driver methods to return the same kind of information</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<h3>2014-04-08T21:13:41+00:00 (commit #<span title="74d4a00eef80a9a65db96924234c7f3ee93f7c7c">74d4a00</span>)</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Author: Timothy J. Warren (tim@timshomepage.net) /
|
|
||||||
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
|
||||||
</p>
|
|
||||||
<pre class="wrapped">Test improvements</pre>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line168">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line173">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line180">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line185">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line127">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line132">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line204">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line210">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line137">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line142">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line147">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line152">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line96">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line99">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line79">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line82">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line117">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line122">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line157">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line162">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Mysql/SQL.php.html#line107">Source</a>
|
<a href="../../source/Drivers/Mysql/SQL.php.html#line112">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#history">History</a>
|
<a href="#history">History</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../source/Drivers/Sqlite/SQL.php.html#line22">Source</a>
|
<a href="../source/Drivers/Sqlite/SQL.php.html#line23">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -84,9 +84,9 @@
|
|||||||
</li><li>public array <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/systemTableList.html">systemTableList</a>()
|
</li><li>public array <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/systemTableList.html">systemTableList</a>()
|
||||||
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/viewList.html">viewList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/viewList.html">viewList</a>()
|
||||||
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/triggerList.html">triggerList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/triggerList.html">triggerList</a>()
|
||||||
</li><li>public ?string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/functionList.html">functionList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/functionList.html">functionList</a>()
|
||||||
</li><li>public ?string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/procedureList.html">procedureList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/procedureList.html">procedureList</a>()
|
||||||
</li><li>public ?string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/sequenceList.html">sequenceList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/sequenceList.html">sequenceList</a>()
|
||||||
</li><li>public array <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/typeList.html">typeList</a>()
|
</li><li>public array <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/typeList.html">typeList</a>()
|
||||||
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/columnList.html">columnList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/columnList.html">columnList</a>()
|
||||||
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/fkList.html">fkList</a>()
|
</li><li>public string <a title="Query\Drivers\Sqlite\SQL" href="../classes/Query_Drivers_Sqlite_SQL/fkList.html">fkList</a>()
|
||||||
@ -159,6 +159,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-24T18:14:03+00:00 (commit #<span title="1d583bcc23524ad8840e4be580e549e8d6e549f4">1d583bc</span>)</h3>
|
<h3>2018-01-24T18:14:03+00:00 (commit #<span title="1d583bcc23524ad8840e4be580e549e8d6e549f4">1d583bc</span>)</h3>
|
||||||
<div>
|
<div>
|
||||||
@ -315,16 +325,6 @@ Enabled analysis tools:
|
|||||||
<pre class="wrapped">Fix some more docblocks</pre>
|
<pre class="wrapped">Fix some more docblocks</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<h3>2014-04-10T19:54:43+00:00 (commit #<span title="32696a53ff1b75dc798735d6b4f566cfc662a9ee">32696a5</span>)</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Author: Timothy J. Warren (tim@timshomepage.net) /
|
|
||||||
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
|
||||||
</p>
|
|
||||||
<pre class="wrapped">Flesh out the table builder a bit, and add some missing driver methods to SQLite</pre>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line149">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line160">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line50">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line51">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line30">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line31">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line161">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line174">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -58,11 +58,14 @@
|
|||||||
<li>
|
<li>
|
||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#throws">Throws</a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line108">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line118">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -81,6 +84,15 @@
|
|||||||
<dt>string</dt>
|
<dt>string</dt>
|
||||||
<dd/>
|
<dd/>
|
||||||
</dl>
|
</dl>
|
||||||
|
<h2 id="throws">Errors/Exceptions</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>
|
||||||
|
<code>
|
||||||
|
<a title="Query\Exception\NotImplementedException" href="../../classes/Query_Exception_NotImplementedException.html">NotImplementedException</a>
|
||||||
|
</code>
|
||||||
|
</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
<h2 id="interface">Defined by Interface</h2>
|
<h2 id="interface">Defined by Interface</h2>
|
||||||
<p class="styled">
|
<p class="styled">
|
||||||
<code>
|
<code>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line173">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line188">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -58,11 +58,14 @@
|
|||||||
<li>
|
<li>
|
||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#throws">Throws</a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line118">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line129">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -81,6 +84,15 @@
|
|||||||
<dt>string</dt>
|
<dt>string</dt>
|
||||||
<dd/>
|
<dd/>
|
||||||
</dl>
|
</dl>
|
||||||
|
<h2 id="throws">Errors/Exceptions</h2>
|
||||||
|
<dl class="styled">
|
||||||
|
<dt>
|
||||||
|
<code>
|
||||||
|
<a title="Query\Exception\NotImplementedException" href="../../classes/Query_Exception_NotImplementedException.html">NotImplementedException</a>
|
||||||
|
</code>
|
||||||
|
</dt>
|
||||||
|
<dd/>
|
||||||
|
</dl>
|
||||||
<h2 id="interface">Defined by Interface</h2>
|
<h2 id="interface">Defined by Interface</h2>
|
||||||
<p class="styled">
|
<p class="styled">
|
||||||
<code>
|
<code>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line40">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line41">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line128">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line139">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line76">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line79">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line60">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line61">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line98">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line105">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line138">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line149">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#interface">Interface</a>
|
<a href="#interface">Interface</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/SQL.php.html#line86">Source</a>
|
<a href="../../source/Drivers/Sqlite/SQL.php.html#line93">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#history">History</a>
|
<a href="#history">History</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../source/Drivers/Sqlite/Util.php.html#line26">Source</a>
|
<a href="../source/Drivers/Sqlite/Util.php.html#line23">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -136,6 +136,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-24T20:03:41+00:00 (commit #<span title="f967aaf96ea1c4cc43e8bae85c465beb84424a1e">f967aaf</span>)</h3>
|
<h3>2018-01-24T20:03:41+00:00 (commit #<span title="f967aaf96ea1c4cc43e8bae85c465beb84424a1e">f967aaf</span>)</h3>
|
||||||
<div>
|
<div>
|
||||||
@ -286,16 +296,6 @@
|
|||||||
<pre class="wrapped">Reorganize drivers into a more modern layout</pre>
|
<pre class="wrapped">Reorganize drivers into a more modern layout</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<h3>2014-04-24T19:32:09+00:00 (commit #<span title="17354ee87eae48b1ca3f852f61543487d79573d3">17354ee</span>)</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Author: Timothy J. Warren (tim@timshomepage.net) /
|
|
||||||
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
|
||||||
</p>
|
|
||||||
<pre class="wrapped">Move SQL and Util classes to their own namespaces</pre>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#overrides">Overrides</a>
|
<a href="#overrides">Overrides</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/Util.php.html#line34">Source</a>
|
<a href="../../source/Drivers/Sqlite/Util.php.html#line31">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#overrides">Overrides</a>
|
<a href="#overrides">Overrides</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/Sqlite/Util.php.html#line104">Source</a>
|
<a href="../../source/Drivers/Sqlite/Util.php.html#line101">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>phpDox - Query\BadDBDriverException</title>
|
<title>phpDox - Query\Exception\BadDBDriverException</title>
|
||||||
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
|
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
</head>
|
</head>
|
||||||
@ -39,7 +39,7 @@
|
|||||||
<a href="../classes.html">Classes</a>
|
<a href="../classes.html">Classes</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="separator">
|
<li class="separator">
|
||||||
<a href="../classes.html#Query">Query</a>
|
<a href="../classes.html#Query_Exception">Query\Exception</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="separator">BadDBDriverException</li>
|
<li class="separator">BadDBDriverException</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -65,12 +65,12 @@
|
|||||||
<a href="#history">History</a>
|
<a href="#history">History</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../source/BadDBDriverException.php.html#line22">Source</a>
|
<a href="../source/Exception/BadDBDriverException.php.html#line22">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
<section>
|
<section>
|
||||||
<h1 id="introduction"><small>Query\</small>BadDBDriverException</h1>
|
<h1 id="introduction"><small>Query\Exception\</small>BadDBDriverException</h1>
|
||||||
<h4>Generic exception for bad drivers</h4>
|
<h4>Generic exception for bad drivers</h4>
|
||||||
<p/>
|
<p/>
|
||||||
<ul/>
|
<ul/>
|
||||||
@ -208,6 +208,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-24T20:03:41+00:00 (commit #<span title="f967aaf96ea1c4cc43e8bae85c465beb84424a1e">f967aaf</span>)</h3>
|
<h3>2018-01-24T20:03:41+00:00 (commit #<span title="f967aaf96ea1c4cc43e8bae85c465beb84424a1e">f967aaf</span>)</h3>
|
||||||
<div>
|
<div>
|
@ -0,0 +1,348 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - Query\Exception\NonExistentConnectionException</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../classes.html#Query_Exception">Query\Exception</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">NonExistentConnectionException</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#hierarchy">Hierarchy</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#coverage">Coverage</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#methods">Methods</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#history">History</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../source/Exception/NonExistentConnectionException.php.html#line22">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1 id="introduction"><small>Query\Exception\</small>NonExistentConnectionException</h1>
|
||||||
|
<h4>Exception for missing database connection</h4>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="synopsis">Synopsis</h2>
|
||||||
|
<div class="synopsis">class NonExistentConnectionException
|
||||||
|
extends <a title="InvalidArgumentException" href="../classes/InvalidArgumentException.html">InvalidArgumentException</a>
|
||||||
|
{<br/><ul class="none"><li>// Inherited methods from <span title="InvalidArgumentException">InvalidArgumentException</span></li><li>public final string <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="InvalidArgumentException" href="../classes/InvalidArgumentException/__toString.html">__toString</a>()
|
||||||
|
</li></ul><ul class="none"><li>// Inherited methods from <span title="LogicException">LogicException</span></li><li>public final string <a title="LogicException" href="../classes/LogicException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="LogicException" href="../classes/LogicException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="LogicException" href="../classes/LogicException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="LogicException" href="../classes/LogicException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="LogicException" href="../classes/LogicException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="LogicException" href="../classes/LogicException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="LogicException" href="../classes/LogicException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="LogicException" href="../classes/LogicException/__toString.html">__toString</a>()
|
||||||
|
</li></ul><ul class="none"><li>// Inherited methods from <span title="Exception">Exception</span></li><li>public void <a title="Exception" href="../classes/Exception/__construct.html">__construct</a>()
|
||||||
|
</li><li>public final string <a title="Exception" href="../classes/Exception/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="Exception" href="../classes/Exception/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="Exception" href="../classes/Exception/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="Exception" href="../classes/Exception/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="Exception" href="../classes/Exception/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="Exception" href="../classes/Exception/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="Exception" href="../classes/Exception/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="Exception" href="../classes/Exception/__toString.html">__toString</a>()
|
||||||
|
</li></ul>
|
||||||
|
|
||||||
|
}<br/></div>
|
||||||
|
<h2 id="hierarchy">Hierarchy</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h4>Extends</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException.html">InvalidArgumentException</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="coverage">Coverage</h2>
|
||||||
|
<table class="styled">
|
||||||
|
<tr>
|
||||||
|
<td>Methods</td>
|
||||||
|
<td class="percent">0%</td>
|
||||||
|
<td class="nummeric">0 / 0</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Lines</td>
|
||||||
|
<td class="percent">0%</td>
|
||||||
|
<td class="nummeric"> / </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<h2 id="methods">Methods</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h3>Inherited from <a title="InvalidArgumentException" href="../classes/InvalidArgumentException.html">InvalidArgumentException</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="InvalidArgumentException" href="../classes/InvalidArgumentException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Inherited from <a title="LogicException" href="../classes/LogicException.html">LogicException</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Inherited from <a title="Exception" href="../classes/Exception.html">Exception</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString"><a title="Exception" href="../classes/Exception/__toString.html">__toString()</a>
|
||||||
|
— String representation of the exception</li>
|
||||||
|
<li id="getCode"><a title="Exception" href="../classes/Exception/getCode.html">getCode()</a>
|
||||||
|
— Gets the Exception code</li>
|
||||||
|
<li id="getFile"><a title="Exception" href="../classes/Exception/getFile.html">getFile()</a>
|
||||||
|
— Gets the file in which the exception was created</li>
|
||||||
|
<li id="getLine"><a title="Exception" href="../classes/Exception/getLine.html">getLine()</a>
|
||||||
|
— Gets the line in which the exception was created</li>
|
||||||
|
<li id="getMessage"><a title="Exception" href="../classes/Exception/getMessage.html">getMessage()</a>
|
||||||
|
— Gets the Exception message</li>
|
||||||
|
<li id="getPrevious"><a title="Exception" href="../classes/Exception/getPrevious.html">getPrevious()</a>
|
||||||
|
— Returns previous Exception</li>
|
||||||
|
<li id="getTrace"><a title="Exception" href="../classes/Exception/getTrace.html">getTrace()</a>
|
||||||
|
— Gets the stack trace</li>
|
||||||
|
<li id="getTraceAsString"><a title="Exception" href="../classes/Exception/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
— Gets the stack trace as a string</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="history">History</h2>
|
||||||
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-24T20:03:41+00:00 (commit #<span title="f967aaf96ea1c4cc43e8bae85c465beb84424a1e">f967aaf</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Remove method separators, update documentation building configuration</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-19T20:47:34+00:00 (commit #<span title="369ca6eb0439091697ee9cbc34c83e9a4bdaace3">369ca6e</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Flatten source structure a bit</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-19T18:43:19+00:00 (commit #<span title="c735c27559da47b4d53867da59cd706e8048f4a0">c735c27</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Update file headers</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-10-14T01:55:23+00:00 (commit #<span title="b8d4768b1bfe0f38d6b65f0d4acd982793c0e9ee">b8d4768</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">camelCase methods and properties</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-10-13T02:12:25+00:00 (commit #<span title="6740aaef79540842110b2f162d17a9373d2c30da">6740aae</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">PHP7 or bust!</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-10-13T00:32:23+00:00 (commit #<span title="3eb4d889f9a18b6e3c157dc5a4bbf8bac955ba97">3eb4d88</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Add Or Not Like method</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-09-07T17:17:17+00:00 (commit #<span title="24f3b1d7011b6087a549e190582386c2669da8ce">24f3b1d</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Update header comments</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-09-07T17:10:03+00:00 (commit #<span title="bb382131cc0d34c5ef725a27b7133c595d11825e">bb38213</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Code Style fixes</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2015-11-11T01:59:03+00:00 (commit #<span title="2613a1c8a44d7b94f427dce703114a25f38b15e8">2613a1c</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Update lots of comments</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2015-07-29T20:51:17+00:00 (commit #<span title="8511c6a445e935547b59a1d3736e7c08cf9633ea">8511c6a</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J. Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Move library into src folder, fix simpletest test runner</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2014-08-08T17:48:20+00:00 (commit #<span title="dd672df81d8f6e423b4b8ed6d7b8077306a191a3">dd672df</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J. Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Reorganize classes to autoload by namespace</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2014-08-08T16:48:14+00:00 (commit #<span title="0a0548d754c132f3e0484b040da8fb75b4187f75">0a0548d</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J. Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Remove some useless code, extract an exception into its own class</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,384 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE html SYSTEM "about:legacy-compat">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
||||||
|
<head>
|
||||||
|
<title>phpDox - Query\Exception\NotImplementedException</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
|
||||||
|
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<nav class="topnav">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<div class="logo"><span>/**</span>phpDox</div>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../namespaces.html">Namespaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../interfaces.html">Interfaces</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../source/index.html">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<div id="mainstage">
|
||||||
|
<div class="box">
|
||||||
|
<ul class="breadcrumb">
|
||||||
|
<li>
|
||||||
|
<a href="../index.html">Overview</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../classes.html">Classes</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">
|
||||||
|
<a href="../classes.html#Query_Exception">Query\Exception</a>
|
||||||
|
</li>
|
||||||
|
<li class="separator">NotImplementedException</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<nav class="box">
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href="#introduction">Introduction</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#synopsis">Synopsis</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#hierarchy">Hierarchy</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#coverage">Coverage</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#methods">Methods</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="#history">History</a>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="../source/Exception/NotImplementedException.php.html#line22">Source</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<section>
|
||||||
|
<h1 id="introduction"><small>Query\Exception\</small>NotImplementedException</h1>
|
||||||
|
<h4>Exception for non-implemented method</h4>
|
||||||
|
<p/>
|
||||||
|
<ul/>
|
||||||
|
<h2 id="synopsis">Synopsis</h2>
|
||||||
|
<div class="synopsis">class NotImplementedException
|
||||||
|
extends <a title="BadMethodCallException" href="../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
{<br/><ul class="none"><li>// Inherited methods from <span title="BadMethodCallException">BadMethodCallException</span></li><li>public final string <a title="BadMethodCallException" href="../classes/BadMethodCallException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="BadMethodCallException" href="../classes/BadMethodCallException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="BadMethodCallException" href="../classes/BadMethodCallException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="BadMethodCallException" href="../classes/BadMethodCallException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="BadMethodCallException" href="../classes/BadMethodCallException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="BadMethodCallException" href="../classes/BadMethodCallException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="BadMethodCallException" href="../classes/BadMethodCallException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="BadMethodCallException" href="../classes/BadMethodCallException/__toString.html">__toString</a>()
|
||||||
|
</li></ul><ul class="none"><li>// Inherited methods from <span title="BadFunctionCallException">BadFunctionCallException</span></li><li>public final string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="BadFunctionCallException" href="../classes/BadFunctionCallException/__toString.html">__toString</a>()
|
||||||
|
</li></ul><ul class="none"><li>// Inherited methods from <span title="LogicException">LogicException</span></li><li>public final string <a title="LogicException" href="../classes/LogicException/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="LogicException" href="../classes/LogicException/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="LogicException" href="../classes/LogicException/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="LogicException" href="../classes/LogicException/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="LogicException" href="../classes/LogicException/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="LogicException" href="../classes/LogicException/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="LogicException" href="../classes/LogicException/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="LogicException" href="../classes/LogicException/__toString.html">__toString</a>()
|
||||||
|
</li></ul><ul class="none"><li>// Inherited methods from <span title="Exception">Exception</span></li><li>public void <a title="Exception" href="../classes/Exception/__construct.html">__construct</a>()
|
||||||
|
</li><li>public final string <a title="Exception" href="../classes/Exception/getMessage.html">getMessage</a>()
|
||||||
|
</li><li>public final Throwable <a title="Exception" href="../classes/Exception/getPrevious.html">getPrevious</a>()
|
||||||
|
</li><li>public final mixed <a title="Exception" href="../classes/Exception/getCode.html">getCode</a>()
|
||||||
|
</li><li>public final string <a title="Exception" href="../classes/Exception/getFile.html">getFile</a>()
|
||||||
|
</li><li>public final int <a title="Exception" href="../classes/Exception/getLine.html">getLine</a>()
|
||||||
|
</li><li>public final array <a title="Exception" href="../classes/Exception/getTrace.html">getTrace</a>()
|
||||||
|
</li><li>public final string <a title="Exception" href="../classes/Exception/getTraceAsString.html">getTraceAsString</a>()
|
||||||
|
</li><li>public string <a title="Exception" href="../classes/Exception/__toString.html">__toString</a>()
|
||||||
|
</li></ul>
|
||||||
|
|
||||||
|
}<br/></div>
|
||||||
|
<h2 id="hierarchy">Hierarchy</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h4>Extends</h4>
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException.html">BadMethodCallException</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="coverage">Coverage</h2>
|
||||||
|
<table class="styled">
|
||||||
|
<tr>
|
||||||
|
<td>Methods</td>
|
||||||
|
<td class="percent">0%</td>
|
||||||
|
<td class="nummeric">0 / 0</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Lines</td>
|
||||||
|
<td class="percent">0%</td>
|
||||||
|
<td class="nummeric"> / </td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<h2 id="methods">Methods</h2>
|
||||||
|
<div class="styled">
|
||||||
|
<h3>Inherited from <a title="BadMethodCallException" href="../classes/BadMethodCallException.html">BadMethodCallException</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="BadMethodCallException" href="../classes/BadMethodCallException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Inherited from <a title="BadFunctionCallException" href="../classes/BadFunctionCallException.html">BadFunctionCallException</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="BadFunctionCallException" href="../classes/BadFunctionCallException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Inherited from <a title="LogicException" href="../classes/LogicException.html">LogicException</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/__toString.html">__toString()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getCode">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getCode.html">getCode()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getFile">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getFile.html">getFile()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getLine">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getLine.html">getLine()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getMessage">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getMessage.html">getMessage()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getPrevious">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getPrevious.html">getPrevious()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTrace">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getTrace.html">getTrace()</a>
|
||||||
|
</li>
|
||||||
|
<li id="getTraceAsString">
|
||||||
|
<a title="LogicException" href="../classes/LogicException/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<h3>Inherited from <a title="Exception" href="../classes/Exception.html">Exception</a></h3>
|
||||||
|
<h4>public</h4>
|
||||||
|
<ul>
|
||||||
|
<li id="__toString"><a title="Exception" href="../classes/Exception/__toString.html">__toString()</a>
|
||||||
|
— String representation of the exception</li>
|
||||||
|
<li id="getCode"><a title="Exception" href="../classes/Exception/getCode.html">getCode()</a>
|
||||||
|
— Gets the Exception code</li>
|
||||||
|
<li id="getFile"><a title="Exception" href="../classes/Exception/getFile.html">getFile()</a>
|
||||||
|
— Gets the file in which the exception was created</li>
|
||||||
|
<li id="getLine"><a title="Exception" href="../classes/Exception/getLine.html">getLine()</a>
|
||||||
|
— Gets the line in which the exception was created</li>
|
||||||
|
<li id="getMessage"><a title="Exception" href="../classes/Exception/getMessage.html">getMessage()</a>
|
||||||
|
— Gets the Exception message</li>
|
||||||
|
<li id="getPrevious"><a title="Exception" href="../classes/Exception/getPrevious.html">getPrevious()</a>
|
||||||
|
— Returns previous Exception</li>
|
||||||
|
<li id="getTrace"><a title="Exception" href="../classes/Exception/getTrace.html">getTrace()</a>
|
||||||
|
— Gets the stack trace</li>
|
||||||
|
<li id="getTraceAsString"><a title="Exception" href="../classes/Exception/getTraceAsString.html">getTraceAsString()</a>
|
||||||
|
— Gets the stack trace as a string</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<h2 id="history">History</h2>
|
||||||
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-24T20:03:41+00:00 (commit #<span title="f967aaf96ea1c4cc43e8bae85c465beb84424a1e">f967aaf</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Remove method separators, update documentation building configuration</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-19T20:47:34+00:00 (commit #<span title="369ca6eb0439091697ee9cbc34c83e9a4bdaace3">369ca6e</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Flatten source structure a bit</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-19T18:43:19+00:00 (commit #<span title="c735c27559da47b4d53867da59cd706e8048f4a0">c735c27</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Update file headers</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-10-14T01:55:23+00:00 (commit #<span title="b8d4768b1bfe0f38d6b65f0d4acd982793c0e9ee">b8d4768</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">camelCase methods and properties</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-10-13T02:12:25+00:00 (commit #<span title="6740aaef79540842110b2f162d17a9373d2c30da">6740aae</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">PHP7 or bust!</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-10-13T00:32:23+00:00 (commit #<span title="3eb4d889f9a18b6e3c157dc5a4bbf8bac955ba97">3eb4d88</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Add Or Not Like method</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-09-07T17:17:17+00:00 (commit #<span title="24f3b1d7011b6087a549e190582386c2669da8ce">24f3b1d</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Update header comments</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2016-09-07T17:10:03+00:00 (commit #<span title="bb382131cc0d34c5ef725a27b7133c595d11825e">bb38213</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Code Style fixes</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2015-11-11T01:59:03+00:00 (commit #<span title="2613a1c8a44d7b94f427dce703114a25f38b15e8">2613a1c</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Update lots of comments</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2015-07-29T20:51:17+00:00 (commit #<span title="8511c6a445e935547b59a1d3736e7c08cf9633ea">8511c6a</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J. Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Move library into src folder, fix simpletest test runner</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2014-08-08T17:48:20+00:00 (commit #<span title="dd672df81d8f6e423b4b8ed6d7b8077306a191a3">dd672df</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J. Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Reorganize classes to autoload by namespace</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>2014-08-08T16:48:14+00:00 (commit #<span title="0a0548d754c132f3e0484b040da8fb75b4187f75">0a0548d</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J. Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J. Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">Remove some useless code, extract an exception into its own class</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
<footer>
|
||||||
|
<span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -119,16 +119,16 @@
|
|||||||
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/orGroupStart.html">orGroupStart</a>()
|
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/orGroupStart.html">orGroupStart</a>()
|
||||||
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/orNotGroupStart.html">orNotGroupStart</a>()
|
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/orNotGroupStart.html">orNotGroupStart</a>()
|
||||||
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/groupEnd.html">groupEnd</a>()
|
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/groupEnd.html">groupEnd</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/get.html">get</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/get.html">get</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getWhere.html">getWhere</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getWhere.html">getWhere</a>()
|
||||||
</li><li>public int <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/countAll.html">countAll</a>()
|
</li><li>public int <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/countAll.html">countAll</a>()
|
||||||
</li><li>public int <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/countAllResults.html">countAllResults</a>()
|
</li><li>public int <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/countAllResults.html">countAllResults</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/insert.html">insert</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/insert.html">insert</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/insertBatch.html">insertBatch</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/insertBatch.html">insertBatch</a>()
|
||||||
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/update.html">update</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/update.html">update</a>()
|
||||||
</li><li>public ?int <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/updateBatch.html">updateBatch</a>()
|
</li><li>public ?int <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/updateBatch.html">updateBatch</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/replace.html">replace</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/replace.html">replace</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/delete.html">delete</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/delete.html">delete</a>()
|
||||||
</li><li>public string <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getCompiledSelect.html">getCompiledSelect</a>()
|
</li><li>public string <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getCompiledSelect.html">getCompiledSelect</a>()
|
||||||
</li><li>public string <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getCompiledInsert.html">getCompiledInsert</a>()
|
</li><li>public string <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getCompiledInsert.html">getCompiledInsert</a>()
|
||||||
</li><li>public string <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getCompiledUpdate.html">getCompiledUpdate</a>()
|
</li><li>public string <a title="Query\QueryBuilder" href="../classes/Query_QueryBuilder/getCompiledUpdate.html">getCompiledUpdate</a>()
|
||||||
@ -278,6 +278,16 @@
|
|||||||
</div>
|
</div>
|
||||||
<h2 id="history">History</h2>
|
<h2 id="history">History</h2>
|
||||||
<ul class="styled history">
|
<ul class="styled history">
|
||||||
|
<li>
|
||||||
|
<h3>2018-01-26T20:45:46+00:00 (commit #<span title="33bb440bd28d77e903a58f24afc585706e2d0f56">33bb440</span>)</h3>
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
Author: Timothy J Warren (tim@timshomepage.net) /
|
||||||
|
Commiter: Timothy J Warren (tim@timshomepage.net)
|
||||||
|
</p>
|
||||||
|
<pre class="wrapped">SQLite improvements, remove nullable PDOStatement return values</pre>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<h3>2018-01-26T13:39:30+00:00 (commit #<span title="3067976cb170a4c26d78b21167978bb6ab4fdb7e">3067976</span>)</h3>
|
<h3>2018-01-26T13:39:30+00:00 (commit #<span title="3067976cb170a4c26d78b21167978bb6ab4fdb7e">3067976</span>)</h3>
|
||||||
<div>
|
<div>
|
||||||
@ -428,16 +438,6 @@
|
|||||||
<pre class="wrapped">Miscellaneous cleanup and refactoring</pre>
|
<pre class="wrapped">Miscellaneous cleanup and refactoring</pre>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<h3>2016-09-07T18:22:52+00:00 (commit #<span title="2db7ad182db1419adb766249c9855d548adefd70">2db7ad1</span>)</h3>
|
|
||||||
<div>
|
|
||||||
<p>
|
|
||||||
Author: Timothy J Warren (tim@timshomepage.net) /
|
|
||||||
Commiter: Timothy J Warren (tim@timshomepage.net)
|
|
||||||
</p>
|
|
||||||
<pre class="wrapped">More style fixes</pre>
|
|
||||||
</div>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#methods">Methods</a>
|
<a href="#methods">Methods</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../source/Drivers/DriverInterface.php.html#line23">Source</a>
|
<a href="../source/Drivers/DriverInterface.php.html#line22">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
@ -71,7 +71,7 @@
|
|||||||
<h2 id="synopsis">Synopsis</h2>
|
<h2 id="synopsis">Synopsis</h2>
|
||||||
<div class="synopsis">interface DriverInterface
|
<div class="synopsis">interface DriverInterface
|
||||||
{<br/><ul class="none"><li>// methods</li><li>public void <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/__construct.html">__construct</a>()
|
{<br/><ul class="none"><li>// methods</li><li>public void <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/__construct.html">__construct</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/prepareQuery.html">prepareQuery</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/prepareQuery.html">prepareQuery</a>()
|
||||||
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/getColumns.html">getColumns</a>()
|
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/getColumns.html">getColumns</a>()
|
||||||
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/getTypes.html">getTypes</a>()
|
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/getTypes.html">getTypes</a>()
|
||||||
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/getIndexes.html">getIndexes</a>()
|
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/getIndexes.html">getIndexes</a>()
|
||||||
@ -87,7 +87,7 @@
|
|||||||
</li><li>public string <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/quote.html">quote</a>()
|
</li><li>public string <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/quote.html">quote</a>()
|
||||||
</li><li>public string|array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/quoteIdent.html">quoteIdent</a>()
|
</li><li>public string|array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/quoteIdent.html">quoteIdent</a>()
|
||||||
</li><li>public string|array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/quoteTable.html">quoteTable</a>()
|
</li><li>public string|array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/quoteTable.html">quoteTable</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/prepareExecute.html">prepareExecute</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/prepareExecute.html">prepareExecute</a>()
|
||||||
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/driverQuery.html">driverQuery</a>()
|
</li><li>public ?array <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/driverQuery.html">driverQuery</a>()
|
||||||
</li><li>public int <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/affectedRows.html">affectedRows</a>()
|
</li><li>public int <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/affectedRows.html">affectedRows</a>()
|
||||||
</li><li>public ?int <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/numRows.html">numRows</a>()
|
</li><li>public ?int <a title="Query\Drivers\DriverInterface" href="../interfaces/Query_Drivers_DriverInterface/numRows.html">numRows</a>()
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#parameter">Parameter</a>
|
<a href="#parameter">Parameter</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line33">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line32">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line181">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line180">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line174">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line173">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line51">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line50">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line96">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line95">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line74">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line73">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line117">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line116">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line66">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line65">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line124">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line123">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line110">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line109">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line224">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line223">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line89">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line88">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line81">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line80">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line131">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line130">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line58">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line57">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line231">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line230">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line103">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line102">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line206">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line205">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -59,7 +59,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line189">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line188">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line197">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line196">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line165">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line164">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
<a href="#throws">Throws</a>
|
<a href="#throws">Throws</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line43">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line42">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line140">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line139">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line148">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line147">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line156">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line155">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line239">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line238">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
<a href="#return">Return</a>
|
<a href="#return">Return</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a href="../../source/Drivers/DriverInterface.php.html#line217">Source</a>
|
<a href="../../source/Drivers/DriverInterface.php.html#line216">Source</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
@ -100,16 +100,16 @@
|
|||||||
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/orGroupStart.html">orGroupStart</a>()
|
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/orGroupStart.html">orGroupStart</a>()
|
||||||
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/orNotGroupStart.html">orNotGroupStart</a>()
|
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/orNotGroupStart.html">orNotGroupStart</a>()
|
||||||
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/groupEnd.html">groupEnd</a>()
|
</li><li>public <span title="QueryBuilderInterface">QueryBuilderInterface</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/groupEnd.html">groupEnd</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/get.html">get</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/get.html">get</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getWhere.html">getWhere</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getWhere.html">getWhere</a>()
|
||||||
</li><li>public int <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/countAll.html">countAll</a>()
|
</li><li>public int <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/countAll.html">countAll</a>()
|
||||||
</li><li>public int <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/countAllResults.html">countAllResults</a>()
|
</li><li>public int <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/countAllResults.html">countAllResults</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/insert.html">insert</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/insert.html">insert</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/insertBatch.html">insertBatch</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/insertBatch.html">insertBatch</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/replace.html">replace</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/replace.html">replace</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/update.html">update</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/update.html">update</a>()
|
||||||
</li><li>public ?int <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/updateBatch.html">updateBatch</a>()
|
</li><li>public ?int <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/updateBatch.html">updateBatch</a>()
|
||||||
</li><li>public ?<span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/delete.html">delete</a>()
|
</li><li>public <span title="PDOStatement">PDOStatement</span> <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/delete.html">delete</a>()
|
||||||
</li><li>public string <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getCompiledSelect.html">getCompiledSelect</a>()
|
</li><li>public string <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getCompiledSelect.html">getCompiledSelect</a>()
|
||||||
</li><li>public string <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getCompiledInsert.html">getCompiledInsert</a>()
|
</li><li>public string <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getCompiledInsert.html">getCompiledInsert</a>()
|
||||||
</li><li>public string <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getCompiledUpdate.html">getCompiledUpdate</a>()
|
</li><li>public string <a title="Query\QueryBuilderInterface" href="../interfaces/Query_QueryBuilderInterface/getCompiledUpdate.html">getCompiledUpdate</a>()
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
<td>\</td>
|
<td>\</td>
|
||||||
<td class="nummeric">0</td>
|
<td class="nummeric">0</td>
|
||||||
<td class="nummeric">
|
<td class="nummeric">
|
||||||
<a href="classes.html#">4</a>
|
<a href="classes.html#">6</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="nummeric">0</td>
|
<td class="nummeric">0</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -56,7 +56,7 @@
|
|||||||
<a href="interfaces.html#Query">1</a>
|
<a href="interfaces.html#Query">1</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="nummeric">
|
<td class="nummeric">
|
||||||
<a href="classes.html#Query">5</a>
|
<a href="classes.html#Query">4</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="nummeric">0</td>
|
<td class="nummeric">0</td>
|
||||||
</tr>
|
</tr>
|
||||||
@ -94,6 +94,14 @@
|
|||||||
</td>
|
</td>
|
||||||
<td class="nummeric">0</td>
|
<td class="nummeric">0</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>\Query\Exception</td>
|
||||||
|
<td class="nummeric">0</td>
|
||||||
|
<td class="nummeric">
|
||||||
|
<a href="classes.html#Query_Exception">3</a>
|
||||||
|
</td>
|
||||||
|
<td class="nummeric">0</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><title>phpDox - Source of BadDBDriverException.php</title><link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/><link rel="stylesheet" href="../css/source.css"/><meta http-equiv="content-type" content="text/html; charset=utf-8"/></head><body><nav class="topnav"><ul><li><div class="logo"><span>/**</span>phpDox</div></li><li class="separator"><a href="../index.html">Overview</a></li><li class="separator"><a href="../namespaces.html">Namespaces</a></li><li><a href="../interfaces.html">Interfaces</a></li><li><a href="../classes.html">Classes</a></li><li class="separator"><a href="../source/index.html">Source</a></li></ul></nav><div id="mainstage"><div class="box"><ul class="breadcrumb"><li><a href="../index.html">Overview</a></li><li class="separator"><a href="../source/index.html">Source</a></li></ul></div><h1>Source of file BadDBDriverException.php</h1><p>
|
|
||||||
Size: 0,550 Bytes - Last Modified: 2018-01-25T14:51:55+00:00</p><section><h2><small>src/</small>BadDBDriverException.php</h2><table class="source"><tr><td class="no"><a class="anker" href="#line1">1</a><a class="anker" href="#line2">2</a><a class="anker" href="#line3">3</a><a class="anker" href="#line4">4</a><a class="anker" href="#line5">5</a><a class="anker" href="#line6">6</a><a class="anker" href="#line7">7</a><a class="anker" href="#line8">8</a><a class="anker" href="#line9">9</a><a class="anker" href="#line10">10</a><a class="anker" href="#line11">11</a><a class="anker" href="#line12">12</a><a class="anker" href="#line13">13</a><a class="anker" href="#line14">14</a><a class="anker" href="#line15">15</a><a class="anker" href="#line16">16</a><a class="anker" href="#line17">17</a><a class="anker" href="#line18">18</a><a class="anker" href="#line19">19</a><a class="anker" href="#line20">20</a><a class="anker" href="#line21">21</a><a class="anker" href="#line22">22</a><a class="anker" href="#line23">23</a></td><td class="line"><div id="line1"><pre><span class="token T_OPEN_TAG"><?php </span><span class="token T_DECLARE">declare</span><span class="token T_PHPDOX_OPEN_BRACKET">(</span><span class="token T_STRING">strict_types</span><span class="token T_PHPDOX_EQUAL">=</span><span class="token T_LNUMBER">1</span><span class="token T_PHPDOX_CLOSE_BRACKET">)</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line2"><pre><span class="token T_DOC_COMMENT">/**</span></pre></div><div id="line3"><pre><span class="token T_DOC_COMMENT"> * Query</span></pre></div><div id="line4"><pre><span class="token T_DOC_COMMENT"> *</span></pre></div><div id="line5"><pre><span class="token T_DOC_COMMENT"> * SQL Query Builder / Database Abstraction Layer</span></pre></div><div id="line6"><pre><span class="token T_DOC_COMMENT"> *</span></pre></div><div id="line7"><pre><span class="token T_DOC_COMMENT"> * PHP version 7.1</span></pre></div><div id="line8"><pre><span class="token T_DOC_COMMENT"> *</span></pre></div><div id="line9"><pre><span class="token T_DOC_COMMENT"> * @package Query</span></pre></div><div id="line10"><pre><span class="token T_DOC_COMMENT"> * @author Timothy J. Warren <tim@timshomepage.net></span></pre></div><div id="line11"><pre><span class="token T_DOC_COMMENT"> * @copyright 2012 - 2018 Timothy J. Warren</span></pre></div><div id="line12"><pre><span class="token T_DOC_COMMENT"> * @license http://www.opensource.org/licenses/mit-license.html MIT License</span></pre></div><div id="line13"><pre><span class="token T_DOC_COMMENT"> * @link https://git.timshomepage.net/aviat4ion/Query</span></pre></div><div id="line14"><pre><span class="token T_DOC_COMMENT"> */</span></pre></div><div id="line15"><pre><span class="token T_NAMESPACE">namespace</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">Query</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line16"><br/></div><div id="line17"><pre><span class="token T_USE">use</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">InvalidArgumentException</span><span class="token T_PHPDOX_SEMICOLON">;</span></pre></div><div id="line18"><br/></div><div id="line19"><pre><span class="token T_DOC_COMMENT">/**</span></pre></div><div id="line20"><pre><span class="token T_DOC_COMMENT"> * Generic exception for bad drivers</span></pre></div><div id="line21"><pre><span class="token T_DOC_COMMENT"> */</span></pre></div><div id="line22"><pre><span class="token T_CLASS">class</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">BadDBDriverException</span><span class="token T_WHITESPACE"> </span><span class="token T_EXTENDS">extends</span><span class="token T_WHITESPACE"> </span><span class="token T_STRING">InvalidArgumentException</span><span class="token T_WHITESPACE"> </span><span class="token T_PHPDOX_OPEN_CURLY">{</span></pre></div><div id="line23"><pre><span class="token T_PHPDOX_CLOSE_CURLY">}</span></pre></div></td></tr></table></section></div><footer><span>Generated using phpDox 0.11.0-dev - Copyright (C) 2010 - 2018 by Arne Blankerts and Contributors</span></footer></body></html>
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user