From 6dcdd68d6d6a985e10f95a0a1f3e4151be645cc1 Mon Sep 17 00:00:00 2001 From: David Grudl Date: Tue, 6 Oct 2015 02:39:59 +0200 Subject: [PATCH] removed @author --- dibi/bridges/Nette-2.1/DibiNette21Extension.php | 1 - dibi/bridges/Nette-2.1/DibiNettePanel.php | 1 - dibi/bridges/Nette-2.2/DibiNette22Extension.php | 1 - dibi/bridges/Tracy/Panel.php | 1 - dibi/drivers/DibiFirebirdDriver.php | 3 --- dibi/drivers/DibiMsSql2005Driver.php | 1 - dibi/drivers/DibiMsSql2005Reflector.php | 1 - dibi/drivers/DibiMsSqlDriver.php | 1 - dibi/drivers/DibiMsSqlReflector.php | 6 +----- dibi/drivers/DibiMySqlDriver.php | 1 - dibi/drivers/DibiMySqlReflector.php | 1 - dibi/drivers/DibiMySqliDriver.php | 1 - dibi/drivers/DibiOdbcDriver.php | 1 - dibi/drivers/DibiOracleDriver.php | 1 - dibi/drivers/DibiPdoDriver.php | 1 - dibi/drivers/DibiPostgreDriver.php | 1 - dibi/drivers/DibiSqlite3Driver.php | 1 - dibi/drivers/DibiSqliteReflector.php | 1 - dibi/libs/Dibi.php | 1 - dibi/libs/DibiConnection.php | 1 - dibi/libs/DibiDataSource.php | 1 - dibi/libs/DibiDatabaseInfo.php | 6 ------ dibi/libs/DibiDateTime.php | 1 - dibi/libs/DibiEvent.php | 1 - dibi/libs/DibiException.php | 3 --- dibi/libs/DibiFileLogger.php | 1 - dibi/libs/DibiFirePhpLogger.php | 1 - dibi/libs/DibiFluent.php | 1 - dibi/libs/DibiHashMap.php | 2 -- dibi/libs/DibiLiteral.php | 1 - dibi/libs/DibiObject.php | 1 - dibi/libs/DibiResult.php | 1 - dibi/libs/DibiResultIterator.php | 1 - dibi/libs/DibiRow.php | 1 - dibi/libs/DibiTranslator.php | 1 - dibi/libs/interfaces.php | 1 - 36 files changed, 1 insertion(+), 50 deletions(-) diff --git a/dibi/bridges/Nette-2.1/DibiNette21Extension.php b/dibi/bridges/Nette-2.1/DibiNette21Extension.php index 951a2107..8a0eefa0 100644 --- a/dibi/bridges/Nette-2.1/DibiNette21Extension.php +++ b/dibi/bridges/Nette-2.1/DibiNette21Extension.php @@ -9,7 +9,6 @@ /** * Dibi extension for Nette Framework 2.1. Creates 'connection' service. * - * @author David Grudl * @package dibi\nette * @phpversion 5.3 */ diff --git a/dibi/bridges/Nette-2.1/DibiNettePanel.php b/dibi/bridges/Nette-2.1/DibiNettePanel.php index 98fa76d9..a40039b2 100644 --- a/dibi/bridges/Nette-2.1/DibiNettePanel.php +++ b/dibi/bridges/Nette-2.1/DibiNettePanel.php @@ -11,7 +11,6 @@ use Nette\Diagnostics\Debugger; /** * Dibi panel for Nette\Diagnostics. * - * @author David Grudl * @package dibi\nette */ class DibiNettePanel extends DibiObject implements Nette\Diagnostics\IBarPanel diff --git a/dibi/bridges/Nette-2.2/DibiNette22Extension.php b/dibi/bridges/Nette-2.2/DibiNette22Extension.php index d9787e02..70afe531 100644 --- a/dibi/bridges/Nette-2.2/DibiNette22Extension.php +++ b/dibi/bridges/Nette-2.2/DibiNette22Extension.php @@ -14,7 +14,6 @@ use Nette; /** * Dibi extension for Nette Framework 2.2. Creates 'connection' & 'panel' services. * - * @author David Grudl * @package dibi\nette */ class DibiExtension22 extends Nette\DI\CompilerExtension diff --git a/dibi/bridges/Tracy/Panel.php b/dibi/bridges/Tracy/Panel.php index 1c0afbe3..d01d353f 100644 --- a/dibi/bridges/Tracy/Panel.php +++ b/dibi/bridges/Tracy/Panel.php @@ -14,7 +14,6 @@ use Tracy; /** * Dibi panel for Tracy. * - * @author David Grudl */ class Panel extends \DibiObject implements Tracy\IBarPanel { diff --git a/dibi/drivers/DibiFirebirdDriver.php b/dibi/drivers/DibiFirebirdDriver.php index 18d53032..bbe83ab5 100644 --- a/dibi/drivers/DibiFirebirdDriver.php +++ b/dibi/drivers/DibiFirebirdDriver.php @@ -18,7 +18,6 @@ * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author Tomáš Kraina, Roman Sklenář * @package dibi\drivers */ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector @@ -807,8 +806,6 @@ class DibiFirebirdDriver extends DibiObject implements IDibiDriver, IDibiResultD /** * Database procedure exception. * - * @author Roman Sklenář - * @copyright Copyright (c) 2010 * @package dibi\drivers */ class DibiProcedureException extends DibiException diff --git a/dibi/drivers/DibiMsSql2005Driver.php b/dibi/drivers/DibiMsSql2005Driver.php index 1d18fa6b..d039db5b 100644 --- a/dibi/drivers/DibiMsSql2005Driver.php +++ b/dibi/drivers/DibiMsSql2005Driver.php @@ -22,7 +22,6 @@ require_once dirname(__FILE__) . '/DibiMsSql2005Reflector.php'; * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiMsSql2005Driver extends DibiObject implements IDibiDriver, IDibiResultDriver diff --git a/dibi/drivers/DibiMsSql2005Reflector.php b/dibi/drivers/DibiMsSql2005Reflector.php index 3eb24f09..73390cf6 100644 --- a/dibi/drivers/DibiMsSql2005Reflector.php +++ b/dibi/drivers/DibiMsSql2005Reflector.php @@ -9,7 +9,6 @@ /** * The dibi reflector for MSSQL2005 databases. * - * @author Daniel Kouba * @package dibi\drivers * @internal */ diff --git a/dibi/drivers/DibiMsSqlDriver.php b/dibi/drivers/DibiMsSqlDriver.php index 9a243bea..bf9f2346 100644 --- a/dibi/drivers/DibiMsSqlDriver.php +++ b/dibi/drivers/DibiMsSqlDriver.php @@ -19,7 +19,6 @@ require_once dirname(__FILE__) . '/DibiMsSqlReflector.php'; * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiMsSqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver diff --git a/dibi/drivers/DibiMsSqlReflector.php b/dibi/drivers/DibiMsSqlReflector.php index 1ff29e66..e1a150a6 100644 --- a/dibi/drivers/DibiMsSqlReflector.php +++ b/dibi/drivers/DibiMsSqlReflector.php @@ -2,17 +2,13 @@ /** * This file is part of the "dibi" - smart database abstraction layer. - * - * Copyright (c) 2005, 2010 David Grudl (https://davidgrudl.com) - * - * @package dibi\drivers + * Copyright (c) 2005 David Grudl (https://davidgrudl.com) */ /** * The dibi reflector for MsSQL databases. * - * @author Steven Bredenberg * @package dibi\drivers * @internal */ diff --git a/dibi/drivers/DibiMySqlDriver.php b/dibi/drivers/DibiMySqlDriver.php index 7e0a7d24..1d348596 100644 --- a/dibi/drivers/DibiMySqlDriver.php +++ b/dibi/drivers/DibiMySqlDriver.php @@ -27,7 +27,6 @@ require_once dirname(__FILE__) . '/DibiMySqlReflector.php'; * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiMySqlDriver extends DibiObject implements IDibiDriver, IDibiResultDriver diff --git a/dibi/drivers/DibiMySqlReflector.php b/dibi/drivers/DibiMySqlReflector.php index 93497b33..f0163fcf 100644 --- a/dibi/drivers/DibiMySqlReflector.php +++ b/dibi/drivers/DibiMySqlReflector.php @@ -9,7 +9,6 @@ /** * The dibi reflector for MySQL databases. * - * @author David Grudl * @package dibi\drivers * @internal */ diff --git a/dibi/drivers/DibiMySqliDriver.php b/dibi/drivers/DibiMySqliDriver.php index ce79fb37..e4249119 100644 --- a/dibi/drivers/DibiMySqliDriver.php +++ b/dibi/drivers/DibiMySqliDriver.php @@ -28,7 +28,6 @@ require_once dirname(__FILE__) . '/DibiMySqlReflector.php'; * - resource (mysqli) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiMySqliDriver extends DibiObject implements IDibiDriver, IDibiResultDriver diff --git a/dibi/drivers/DibiOdbcDriver.php b/dibi/drivers/DibiOdbcDriver.php index 8949f05c..f7709dea 100644 --- a/dibi/drivers/DibiOdbcDriver.php +++ b/dibi/drivers/DibiOdbcDriver.php @@ -17,7 +17,6 @@ * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiOdbcDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector diff --git a/dibi/drivers/DibiOracleDriver.php b/dibi/drivers/DibiOracleDriver.php index e7592666..ddcd82a2 100644 --- a/dibi/drivers/DibiOracleDriver.php +++ b/dibi/drivers/DibiOracleDriver.php @@ -21,7 +21,6 @@ * - persistent => Creates persistent connections with oci_pconnect instead of oci_new_connect * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiOracleDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector diff --git a/dibi/drivers/DibiPdoDriver.php b/dibi/drivers/DibiPdoDriver.php index 3409674c..de73954d 100644 --- a/dibi/drivers/DibiPdoDriver.php +++ b/dibi/drivers/DibiPdoDriver.php @@ -22,7 +22,6 @@ require_once dirname(__FILE__) . '/DibiSqliteReflector.php'; * - version * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiPdoDriver extends DibiObject implements IDibiDriver, IDibiResultDriver diff --git a/dibi/drivers/DibiPostgreDriver.php b/dibi/drivers/DibiPostgreDriver.php index 29bb6cfc..eb0939fc 100644 --- a/dibi/drivers/DibiPostgreDriver.php +++ b/dibi/drivers/DibiPostgreDriver.php @@ -18,7 +18,6 @@ * - resource (resource) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiPostgreDriver extends DibiObject implements IDibiDriver, IDibiResultDriver, IDibiReflector diff --git a/dibi/drivers/DibiSqlite3Driver.php b/dibi/drivers/DibiSqlite3Driver.php index a70fdb24..c04a574f 100644 --- a/dibi/drivers/DibiSqlite3Driver.php +++ b/dibi/drivers/DibiSqlite3Driver.php @@ -21,7 +21,6 @@ require_once dirname(__FILE__) . '/DibiSqliteReflector.php'; * - resource (SQLite3) => existing connection resource * - lazy, profiler, result, substitutes, ... => see DibiConnection options * - * @author David Grudl * @package dibi\drivers */ class DibiSqlite3Driver extends DibiObject implements IDibiDriver, IDibiResultDriver diff --git a/dibi/drivers/DibiSqliteReflector.php b/dibi/drivers/DibiSqliteReflector.php index 16ddb553..4fe79382 100644 --- a/dibi/drivers/DibiSqliteReflector.php +++ b/dibi/drivers/DibiSqliteReflector.php @@ -9,7 +9,6 @@ /** * The dibi reflector for SQLite database. * - * @author David Grudl * @package dibi\drivers * @internal */ diff --git a/dibi/libs/Dibi.php b/dibi/libs/Dibi.php index 7397abdf..a7bf67a4 100644 --- a/dibi/libs/Dibi.php +++ b/dibi/libs/Dibi.php @@ -10,7 +10,6 @@ * This class is static container class for creating DB objects and * store connections info. * - * @author David Grudl * @package dibi */ class dibi diff --git a/dibi/libs/DibiConnection.php b/dibi/libs/DibiConnection.php index b01b777b..c9bd22b9 100644 --- a/dibi/libs/DibiConnection.php +++ b/dibi/libs/DibiConnection.php @@ -9,7 +9,6 @@ /** * dibi connection. * - * @author David Grudl * @package dibi * * @property-read bool $connected diff --git a/dibi/libs/DibiDataSource.php b/dibi/libs/DibiDataSource.php index 96d57951..d84094a6 100644 --- a/dibi/libs/DibiDataSource.php +++ b/dibi/libs/DibiDataSource.php @@ -9,7 +9,6 @@ /** * Default implementation of IDataSource for dibi. * - * @author David Grudl * @package dibi * * @property-read DibiConnection $connection diff --git a/dibi/libs/DibiDatabaseInfo.php b/dibi/libs/DibiDatabaseInfo.php index bc8f813e..d8293f77 100644 --- a/dibi/libs/DibiDatabaseInfo.php +++ b/dibi/libs/DibiDatabaseInfo.php @@ -9,7 +9,6 @@ /** * Reflection metadata class for a database. * - * @author David Grudl * @package dibi\reflection * * @property-read string $name @@ -115,7 +114,6 @@ class DibiDatabaseInfo extends DibiObject /** * Reflection metadata class for a database table. * - * @author David Grudl * @package dibi\reflection * * @property-read string $name @@ -307,7 +305,6 @@ class DibiTableInfo extends DibiObject /** * Reflection metadata class for a result set. * - * @author David Grudl * @package dibi\reflection * * @property-read array $columns @@ -404,7 +401,6 @@ class DibiResultInfo extends DibiObject /** * Reflection metadata class for a table or result set column. * - * @author David Grudl * @package dibi\reflection * * @property-read string $name @@ -604,7 +600,6 @@ class DibiColumnInfo extends DibiObject /** * Reflection metadata class for a foreign key. * - * @author David Grudl * @package dibi\reflection * @todo * @@ -650,7 +645,6 @@ class DibiForeignKeyInfo extends DibiObject /** * Reflection metadata class for a index or primary key. * - * @author David Grudl * @package dibi\reflection * * @property-read string $name diff --git a/dibi/libs/DibiDateTime.php b/dibi/libs/DibiDateTime.php index 49772533..3f2f7ec1 100644 --- a/dibi/libs/DibiDateTime.php +++ b/dibi/libs/DibiDateTime.php @@ -9,7 +9,6 @@ /** * DateTime with serialization and timestamp support for PHP 5.2. * - * @author David Grudl * @package dibi */ class DibiDateTime extends DateTime diff --git a/dibi/libs/DibiEvent.php b/dibi/libs/DibiEvent.php index e85bf3d0..55f3a8dd 100644 --- a/dibi/libs/DibiEvent.php +++ b/dibi/libs/DibiEvent.php @@ -9,7 +9,6 @@ /** * Profiler & logger event. * - * @author David Grudl * @package dibi */ class DibiEvent diff --git a/dibi/libs/DibiException.php b/dibi/libs/DibiException.php index 04ea86fd..72d0b286 100644 --- a/dibi/libs/DibiException.php +++ b/dibi/libs/DibiException.php @@ -9,7 +9,6 @@ /** * dibi common exception. * - * @author David Grudl * @package dibi */ class DibiException extends Exception @@ -54,7 +53,6 @@ class DibiException extends Exception /** * database server exception. * - * @author David Grudl * @package dibi */ class DibiDriverException extends DibiException @@ -114,7 +112,6 @@ class DibiDriverException extends DibiException /** * PCRE exception. * - * @author David Grudl * @package dibi */ class DibiPcreException extends Exception diff --git a/dibi/libs/DibiFileLogger.php b/dibi/libs/DibiFileLogger.php index fd452f8b..40bc552c 100644 --- a/dibi/libs/DibiFileLogger.php +++ b/dibi/libs/DibiFileLogger.php @@ -9,7 +9,6 @@ /** * dibi file logger. * - * @author David Grudl * @package dibi */ class DibiFileLogger extends DibiObject diff --git a/dibi/libs/DibiFirePhpLogger.php b/dibi/libs/DibiFirePhpLogger.php index 775899bf..d21a9237 100644 --- a/dibi/libs/DibiFirePhpLogger.php +++ b/dibi/libs/DibiFirePhpLogger.php @@ -9,7 +9,6 @@ /** * dibi FirePHP logger. * - * @author David Grudl * @package dibi */ class DibiFirePhpLogger extends DibiObject diff --git a/dibi/libs/DibiFluent.php b/dibi/libs/DibiFluent.php index d5a39d64..d42bcd6e 100644 --- a/dibi/libs/DibiFluent.php +++ b/dibi/libs/DibiFluent.php @@ -9,7 +9,6 @@ /** * dibi SQL builder via fluent interfaces. EXPERIMENTAL! * - * @author David Grudl * @package dibi * * @property-read string $command diff --git a/dibi/libs/DibiHashMap.php b/dibi/libs/DibiHashMap.php index f68d389e..2922f594 100644 --- a/dibi/libs/DibiHashMap.php +++ b/dibi/libs/DibiHashMap.php @@ -9,7 +9,6 @@ /** * Lazy cached storage. * - * @author David Grudl * @package dibi * @internal */ @@ -45,7 +44,6 @@ abstract class DibiHashMapBase /** * Lazy cached storage. * - * @author David Grudl * @internal */ final class DibiHashMap extends DibiHashMapBase diff --git a/dibi/libs/DibiLiteral.php b/dibi/libs/DibiLiteral.php index cbfbab43..63031932 100644 --- a/dibi/libs/DibiLiteral.php +++ b/dibi/libs/DibiLiteral.php @@ -9,7 +9,6 @@ /** * SQL literal value. * - * @author David Grudl * @package dibi */ class DibiLiteral extends DibiObject diff --git a/dibi/libs/DibiObject.php b/dibi/libs/DibiObject.php index b4f75e6b..fd5cb090 100644 --- a/dibi/libs/DibiObject.php +++ b/dibi/libs/DibiObject.php @@ -44,7 +44,6 @@ * $obj->newMethod($x); * * - * @author David Grudl * @package dibi */ abstract class DibiObject diff --git a/dibi/libs/DibiResult.php b/dibi/libs/DibiResult.php index 66ce49ec..591df81c 100644 --- a/dibi/libs/DibiResult.php +++ b/dibi/libs/DibiResult.php @@ -22,7 +22,6 @@ * unset($result); * * - * @author David Grudl * @package dibi * * @property-read mixed $resource diff --git a/dibi/libs/DibiResultIterator.php b/dibi/libs/DibiResultIterator.php index bc25aac4..c78a6f57 100644 --- a/dibi/libs/DibiResultIterator.php +++ b/dibi/libs/DibiResultIterator.php @@ -18,7 +18,6 @@ * unset($result); * * - * @author David Grudl * @package dibi */ class DibiResultIterator implements Iterator, Countable diff --git a/dibi/libs/DibiRow.php b/dibi/libs/DibiRow.php index 078d36ba..6f5a0de0 100644 --- a/dibi/libs/DibiRow.php +++ b/dibi/libs/DibiRow.php @@ -9,7 +9,6 @@ /** * Result set single row. * - * @author David Grudl * @package dibi */ class DibiRow implements ArrayAccess, IteratorAggregate, Countable diff --git a/dibi/libs/DibiTranslator.php b/dibi/libs/DibiTranslator.php index c59c379d..7f38113b 100644 --- a/dibi/libs/DibiTranslator.php +++ b/dibi/libs/DibiTranslator.php @@ -9,7 +9,6 @@ /** * dibi SQL translator. * - * @author David Grudl * @package dibi */ final class DibiTranslator extends DibiObject diff --git a/dibi/libs/interfaces.php b/dibi/libs/interfaces.php index b5e669da..18de2f7b 100644 --- a/dibi/libs/interfaces.php +++ b/dibi/libs/interfaces.php @@ -184,7 +184,6 @@ interface IDibiResultDriver /** * dibi driver reflection. * - * @author David Grudl * @package dibi */ interface IDibiReflector