1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 22:26:43 +02:00

simplified phpDoc comments

This commit is contained in:
David Grudl
2010-09-14 18:40:41 +02:00
parent 056a680cff
commit e6e7babe22
29 changed files with 176 additions and 215 deletions

View File

@@ -1,13 +1,12 @@
<?php
/**
* Nette Framework
* This file is part of the Nette Framework.
*
* @copyright Copyright (c) 2004, 2010 David Grudl
* @license http://nette.org/license Nette license
* @link http://nette.org
* @category Nette
* @package Nette
* Copyright (c) 2004, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "Nette license", and/or
* GPL license. For more information please see http://nette.org
*/
// no namespace
@@ -17,7 +16,7 @@
/**
* DateTime with serialization and timestamp support for PHP 5.2.
*
* @copyright Copyright (c) 2004, 2010 David Grudl
* @author David Grudl
* @package Nette
*/
class DateTime53 extends DateTime

View File

@@ -1,19 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* dibi - smart database abstraction layer.
*
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license" that is bundled
* with this package in the file license.txt, and/or GPL license.
*
* For more information please see http://dibiphp.com
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -110,8 +103,7 @@ require_once dirname(__FILE__) . '/libs/DibiProfiler.php';
* This class is static container class for creating DB objects and
* store connections info.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
class dibi
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -24,7 +24,6 @@
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @author Tomáš Kraina, Roman Sklenář
* @copyright Copyright (c) 2010
* @package dibi\drivers
*/
class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -23,7 +23,7 @@
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -24,7 +24,7 @@
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -32,7 +32,7 @@ require_once dirname(__FILE__) . '/mysql.reflector.php';
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -14,7 +14,7 @@
/**
* The dibi reflector for MySQL databases.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
* @internal
*/

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -33,7 +33,7 @@ require_once dirname(__FILE__) . '/mysql.reflector.php';
* - resource (mysqli) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -22,7 +22,7 @@
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -24,7 +24,7 @@
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -22,7 +22,7 @@
* - resource (PDO) => existing connection
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -23,7 +23,7 @@
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -28,7 +28,7 @@ require_once dirname(__FILE__) . '/sqlite.reflector.php';
* - resource (resource) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiSqliteDriver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -14,7 +14,7 @@
/**
* The dibi reflector for SQLite database.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
* @internal
*/

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi\drivers
*/
@@ -26,7 +26,7 @@ require_once dirname(__FILE__) . '/sqlite.reflector.php';
* - resource (SQLite3) => existing connection resource
* - lazy, profiler, result, substitutes, ... => see DibiConnection options
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @author David Grudl
* @package dibi\drivers
*/
class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDriver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* dibi connection.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read bool $connected
* @property-read mixed $config

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* Default implementation of IDataSource for dibi.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read DibiConnection $connection
* @property-read DibiResult $result

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* Reflection metadata class for a database.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read string $name
* @property-read array $tables
@@ -132,8 +131,7 @@ class DibiDatabaseInfo extends DibiObject
/**
* Reflection metadata class for a database table.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read string $name
* @property-read bool $view
@@ -341,8 +339,7 @@ class DibiTableInfo extends DibiObject
/**
* Reflection metadata class for a result set.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read array $columns
* @property-read array $columnNames
@@ -448,8 +445,7 @@ class DibiResultInfo extends DibiObject
/**
* Reflection metadata class for a table or result set column.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read string $name
* @property-read string $fullName
@@ -655,8 +651,7 @@ class DibiColumnInfo extends DibiObject
/**
* Reflection metadata class for a foreign key.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
* @todo
*
* @property-read string $name
@@ -706,8 +701,7 @@ class DibiForeignKeyInfo extends DibiObject
/**
* Reflection metadata class for a index or primary key.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read string $name
* @property-read array $columns

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* dibi common exception.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
class DibiException extends Exception implements IDebugPanel
{
@@ -102,8 +101,7 @@ class DibiException extends Exception implements IDebugPanel
/**
* database server exception.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
class DibiDriverException extends DibiException
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* dibi SQL builder via fluent interfaces. EXPERIMENTAL!
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read string $command
* @property-read DibiConnection $connection

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**#@+
* Lazy cached storage.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
* @internal
*/
abstract class DibiLazyStorageBase

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -50,8 +50,7 @@
* $obj->newMethod($x);
* </code>
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
abstract class DibiObject
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -19,8 +19,7 @@
* - 'explain' - explain SELECT queries?
* - 'filter' - which queries to log?
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
class DibiProfiler extends DibiObject implements IDibiProfiler, IDebugPanel
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -28,8 +28,7 @@
* unset($result);
* </code>
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*
* @property-read mixed $resource
* @property-read IDibiResultDriver $driver

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -24,8 +24,7 @@
* unset($result);
* </code>
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
class DibiResultIterator implements Iterator, Countable
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* Result set single row.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
class DibiRow implements ArrayAccess, IteratorAggregate, Countable
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -15,8 +15,7 @@
/**
* dibi SQL translator.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
final class DibiTranslator extends DibiObject
{

View File

@@ -1,12 +1,12 @@
<?php
/**
* dibi - tiny'n'smart database abstraction layer
* ----------------------------------------------
* This file is part of the "dibi" - smart database abstraction layer.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @license http://dibiphp.com/license dibi license
* @link http://dibiphp.com
* Copyright (c) 2005, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "dibi license", and/or
* GPL license. For more information please see http://dibiphp.com
* @package dibi
*/
@@ -80,8 +80,7 @@ interface IDibiProfiler
/**
* dibi driver interface.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
interface IDibiDriver
{
@@ -192,8 +191,7 @@ interface IDibiDriver
/**
* dibi result set driver interface.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
interface IDibiResultDriver
{
@@ -257,8 +255,7 @@ interface IDibiResultDriver
/**
* dibi driver reflection.
*
* @copyright Copyright (c) 2005, 2010 David Grudl
* @package dibi
* @author David Grudl
*/
interface IDibiReflector
{

View File

@@ -1,19 +1,11 @@
<?php
/**
* Nette Framework
* This file is part of the Nette Framework.
*
* Copyright (c) 2004, 2010 David Grudl (http://davidgrudl.com)
*
* This source file is subject to the "Nette license" that is bundled
* with this package in the file license.txt, and/or GPL license.
*
* For more information please see http://nette.org
*
* @copyright Copyright (c) 2004, 2010 David Grudl
* @license http://nette.org/license Nette license
* @link http://nette.org
* @category Nette
* @package Nette
* This source file is subject to the "Nette license", and/or
* GPL license. For more information please see http://nette.org
*/
final