mirror of
https://github.com/dg/dibi.git
synced 2025-08-06 14:16:39 +02:00
removed @package
This commit is contained in:
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* Dibi extension for Nette Framework 2.1. Creates 'connection' service.
|
||||
*
|
||||
* @package dibi\nette
|
||||
*/
|
||||
class DibiNette21Extension extends Nette\DI\CompilerExtension
|
||||
{
|
||||
|
@@ -13,8 +13,6 @@ use Nette;
|
||||
|
||||
/**
|
||||
* Dibi extension for Nette Framework 2.2. Creates 'connection' & 'panel' services.
|
||||
*
|
||||
* @package dibi\nette
|
||||
*/
|
||||
class DibiExtension22 extends Nette\DI\CompilerExtension
|
||||
{
|
||||
|
@@ -10,8 +10,6 @@ use Nette\Diagnostics\Debugger;
|
||||
|
||||
/**
|
||||
* Dibi panel for Nette\Diagnostics.
|
||||
*
|
||||
* @package dibi\nette
|
||||
*/
|
||||
class DibiNettePanel implements Nette\Diagnostics\IBarPanel
|
||||
{
|
||||
|
@@ -14,7 +14,6 @@ use DibiHelpers;
|
||||
|
||||
/**
|
||||
* Dibi panel for Tracy.
|
||||
* @package dibi\nette
|
||||
*/
|
||||
class Panel implements Tracy\IBarPanel
|
||||
{
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* dibi connection.
|
||||
*
|
||||
* @package dibi
|
||||
*
|
||||
* @property-read int $affectedRows
|
||||
* @property-read int $insertId
|
||||
*/
|
||||
|
@@ -9,7 +9,6 @@
|
||||
/**
|
||||
* Default implementation of IDataSource for dibi.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiDataSource implements IDataSource
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* DateTime.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiDateTime extends DateTime
|
||||
{
|
||||
|
@@ -17,8 +17,6 @@
|
||||
* - buffers (int) => buffers is the number of database buffers to allocate for the server-side cache. If 0 or omitted, server chooses its own default.
|
||||
* - resource (resource) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiFirebirdDriver implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||
{
|
||||
|
@@ -18,8 +18,6 @@
|
||||
* - charset => character encoding to set (default is UTF-8)
|
||||
* - resource (resource) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiMsSql2005Driver implements IDibiDriver, IDibiResultDriver
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* The dibi reflector for MSSQL2005 databases.
|
||||
*
|
||||
* @package dibi\drivers
|
||||
* @internal
|
||||
*/
|
||||
class DibiMsSql2005Reflector implements IDibiReflector
|
||||
|
@@ -17,8 +17,6 @@
|
||||
* - persistent (bool) => try to find a persistent link?
|
||||
* - resource (resource) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiMsSqlDriver implements IDibiDriver, IDibiResultDriver
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* The dibi reflector for MsSQL databases.
|
||||
*
|
||||
* @package dibi\drivers
|
||||
* @internal
|
||||
*/
|
||||
class DibiMsSqlReflector implements IDibiReflector
|
||||
|
@@ -23,8 +23,6 @@
|
||||
* - sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
|
||||
* - resource (resource) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiMySqlDriver implements IDibiDriver, IDibiResultDriver
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* The dibi reflector for MySQL databases.
|
||||
*
|
||||
* @package dibi\drivers
|
||||
* @internal
|
||||
*/
|
||||
class DibiMySqlReflector implements IDibiReflector
|
||||
|
@@ -24,8 +24,6 @@
|
||||
* - sqlmode => see http://dev.mysql.com/doc/refman/5.0/en/server-sql-mode.html
|
||||
* - resource (mysqli) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiMySqliDriver implements IDibiDriver, IDibiResultDriver
|
||||
{
|
||||
|
@@ -16,8 +16,6 @@
|
||||
* - persistent (bool) => try to find a persistent link?
|
||||
* - resource (resource) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiOdbcDriver implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||
{
|
||||
|
@@ -20,8 +20,6 @@
|
||||
* - resource (resource) => existing connection resource
|
||||
* - persistent => Creates persistent connections with oci_pconnect instead of oci_new_connect
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiOracleDriver implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||
{
|
||||
|
@@ -17,8 +17,6 @@
|
||||
* - resource (PDO) => existing connection
|
||||
* - version
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiPdoDriver implements IDibiDriver, IDibiResultDriver
|
||||
{
|
||||
|
@@ -17,8 +17,6 @@
|
||||
* - persistent (bool) => try to find a persistent link?
|
||||
* - resource (resource) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiPostgreDriver implements IDibiDriver, IDibiResultDriver, IDibiReflector
|
||||
{
|
||||
|
@@ -17,8 +17,6 @@
|
||||
* - charset => character encoding to set (default is UTF-8)
|
||||
* - resource (SQLite3) => existing connection resource
|
||||
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
|
||||
*
|
||||
* @package dibi\drivers
|
||||
*/
|
||||
class DibiSqlite3Driver implements IDibiDriver, IDibiResultDriver
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* The dibi reflector for SQLite database.
|
||||
*
|
||||
* @package dibi\drivers
|
||||
* @internal
|
||||
*/
|
||||
class DibiSqliteReflector implements IDibiReflector
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* Profiler & logger event.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiEvent
|
||||
{
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* dibi SQL builder via fluent interfaces. EXPERIMENTAL!
|
||||
*
|
||||
* @package dibi
|
||||
*
|
||||
* @method DibiFluent select($field)
|
||||
* @method DibiFluent distinct()
|
||||
* @method DibiFluent from($table)
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* Lazy cached storage.
|
||||
*
|
||||
* @package dibi
|
||||
* @internal
|
||||
*/
|
||||
abstract class DibiHashMapBase
|
||||
|
@@ -6,9 +6,6 @@
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiHelpers
|
||||
{
|
||||
use DibiStrict;
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* SQL literal value.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiLiteral
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* dibi file logger.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiFileLogger
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* dibi FirePHP logger.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiFirePhpLogger
|
||||
{
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* Reflection metadata class for a table or result set column.
|
||||
*
|
||||
* @package dibi\reflection
|
||||
*
|
||||
* @property-read string $name
|
||||
* @property-read string $fullName
|
||||
* @property-read DibiTableInfo $table
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* Reflection metadata class for a database.
|
||||
*
|
||||
* @package dibi\reflection
|
||||
*
|
||||
* @property-read string $name
|
||||
* @property-read array $tables
|
||||
* @property-read array $tableNames
|
||||
|
@@ -9,9 +9,6 @@
|
||||
/**
|
||||
* Reflection metadata class for a foreign key.
|
||||
*
|
||||
* @package dibi\reflection
|
||||
* @todo
|
||||
*
|
||||
* @property-read string $name
|
||||
* @property-read array $references
|
||||
*/
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* Reflection metadata class for a index or primary key.
|
||||
*
|
||||
* @package dibi\reflection
|
||||
*
|
||||
* @property-read string $name
|
||||
* @property-read array $columns
|
||||
* @property-read bool $unique
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* Reflection metadata class for a result set.
|
||||
*
|
||||
* @package dibi\reflection
|
||||
*
|
||||
* @property-read array $columns
|
||||
* @property-read array $columnNames
|
||||
*/
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* Reflection metadata class for a database table.
|
||||
*
|
||||
* @package dibi\reflection
|
||||
*
|
||||
* @property-read string $name
|
||||
* @property-read bool $view
|
||||
* @property-read array $columns
|
||||
|
@@ -22,8 +22,6 @@
|
||||
* unset($result);
|
||||
* </code>
|
||||
*
|
||||
* @package dibi
|
||||
*
|
||||
* @property-read int $rowCount
|
||||
*/
|
||||
class DibiResult implements IDataSource
|
||||
|
@@ -17,8 +17,6 @@
|
||||
* }
|
||||
* unset($result);
|
||||
* </code>
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiResultIterator implements Iterator, Countable
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* Result set single row.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiRow implements ArrayAccess, IteratorAggregate, Countable
|
||||
{
|
||||
|
@@ -8,7 +8,6 @@
|
||||
|
||||
/**
|
||||
* Better OOP experience.
|
||||
* @package dibi
|
||||
*/
|
||||
trait DibiStrict
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* dibi SQL translator.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
final class DibiTranslator
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* Data types.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiType
|
||||
{
|
||||
|
@@ -9,8 +9,6 @@
|
||||
/**
|
||||
* This class is static container class for creating DB objects and
|
||||
* store connections info.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class dibi
|
||||
{
|
||||
|
@@ -8,8 +8,6 @@
|
||||
|
||||
/**
|
||||
* dibi common exception.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiException extends Exception
|
||||
{
|
||||
@@ -54,8 +52,6 @@ class DibiException extends Exception
|
||||
|
||||
/**
|
||||
* database server exception.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiDriverException extends DibiException
|
||||
{
|
||||
@@ -113,8 +109,6 @@ class DibiDriverException extends DibiException
|
||||
|
||||
/**
|
||||
* PCRE exception.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiPcreException extends Exception
|
||||
{
|
||||
@@ -135,24 +129,16 @@ class DibiPcreException extends Exception
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiNotImplementedException extends DibiException
|
||||
{}
|
||||
|
||||
|
||||
/**
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiNotSupportedException extends DibiException
|
||||
{}
|
||||
|
||||
|
||||
/**
|
||||
* Database procedure exception.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
class DibiProcedureException extends DibiException
|
||||
{
|
||||
|
@@ -8,7 +8,6 @@
|
||||
|
||||
/**
|
||||
* Provides an interface between a dataset and data-aware components.
|
||||
* @package dibi
|
||||
*/
|
||||
interface IDataSource extends Countable, IteratorAggregate
|
||||
{
|
||||
@@ -19,7 +18,6 @@ interface IDataSource extends Countable, IteratorAggregate
|
||||
|
||||
/**
|
||||
* dibi driver interface.
|
||||
* @package dibi
|
||||
*/
|
||||
interface IDibiDriver
|
||||
{
|
||||
@@ -131,7 +129,6 @@ interface IDibiDriver
|
||||
|
||||
/**
|
||||
* dibi result set driver interface.
|
||||
* @package dibi
|
||||
*/
|
||||
interface IDibiResultDriver
|
||||
{
|
||||
@@ -189,8 +186,6 @@ interface IDibiResultDriver
|
||||
|
||||
/**
|
||||
* dibi driver reflection.
|
||||
*
|
||||
* @package dibi
|
||||
*/
|
||||
interface IDibiReflector
|
||||
{
|
||||
|
Reference in New Issue
Block a user