Skip to content

Commit 997f80b

Browse files
committed
removed @author
1 parent 2b9fda2 commit 997f80b

30 files changed

+0
-71
lines changed

src/Bridges/DatabaseDI/DatabaseExtension.php

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313
/**
1414
* Nette Framework Database services.
15-
*
16-
* @author David Grudl
17-
* @author Jan Skrasek
1815
*/
1916
class DatabaseExtension extends Nette\DI\CompilerExtension
2017
{

src/Bridges/DatabaseTracy/ConnectionPanel.php

-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414

1515
/**
1616
* Debug panel for Nette\Database.
17-
*
18-
* @author David Grudl
1917
*/
2018
class ConnectionPanel extends Nette\Object implements Tracy\IBarPanel
2119
{

src/Database/Connection.php

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
/**
1616
* Represents a connection between PHP and a database server.
1717
*
18-
* @author David Grudl
19-
*
2018
* @property-read ISupplementalDriver $supplementalDriver
2119
* @property-read string $dsn
2220
* @property-read PDO $pdo

src/Database/Context.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* Database context.
16-
*
17-
* @author David Grudl
1816
*/
1917
class Context extends Nette\Object
2018
{

src/Database/Conventions/DiscoveredConventions.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* Conventions based on database structure.
16-
*
17-
* @author Jan Skrasek
1816
*/
1917
class DiscoveredConventions implements IConventions
2018
{

src/Database/Conventions/StaticConventions.php

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313

1414
/**
1515
* Conventions based on static definition.
16-
*
17-
* @author Jakub Vrana
18-
* @author Jan Skrasek
1916
*/
2017
class StaticConventions extends Object implements IConventions
2118
{

src/Database/Drivers/MsSqlDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental MS SQL database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class MsSqlDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
1917
{

src/Database/Drivers/MySqlDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental MySQL database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class MySqlDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
1917
{

src/Database/Drivers/OciDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental Oracle database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class OciDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
1917
{

src/Database/Drivers/OdbcDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental ODBC database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class OdbcDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
1917
{

src/Database/Drivers/PgSqlDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental PostgreSQL database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class PgSqlDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
1917
{

src/Database/Drivers/Sqlite2Driver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental SQLite2 database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class Sqlite2Driver extends SqliteDriver
1917
{

src/Database/Drivers/SqliteDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Supplemental SQLite3 database driver.
15-
*
16-
* @author David Grudl
1715
*/
1816
class SqliteDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
1917
{

src/Database/Drivers/SqlsrvDriver.php

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313
/**
1414
* Supplemental SQL Server 2005 and later database driver.
15-
*
16-
* @author David Grudl
17-
* @author Miloslav Hůla
1815
*/
1916
class SqlsrvDriver extends Nette\Object implements Nette\Database\ISupplementalDriver
2017
{

src/Database/Helpers.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* Database helpers.
16-
*
17-
* @author David Grudl
1816
*/
1917
class Helpers
2018
{

src/Database/IRow.php

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
/**
1212
* Row interface.
13-
*
14-
* @author Jan Skrasek
1513
*/
1614
interface IRow extends \Traversable, \ArrayAccess
1715
{

src/Database/IRowContainer.php

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
/**
1212
* Container of database result fetched into IRow.
13-
*
14-
* @author Jan Skrasek
1513
*/
1614
interface IRowContainer extends \Traversable
1715
{

src/Database/ISupplementalDriver.php

-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
/**
1212
* Supplemental PDO database driver.
13-
*
14-
* @author David Grudl
1513
*/
1614
interface ISupplementalDriver
1715
{

src/Database/ResultSet.php

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
/**
1515
* Represents a result set.
1616
*
17-
* @author David Grudl
18-
* @author Jan Skrasek
19-
*
2017
* @property-read Connection $connection
2118
*/
2219
class ResultSet extends Nette\Object implements \Iterator, IRowContainer

src/Database/Row.php

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313
/**
1414
* Represents a single table row.
15-
*
16-
* @author David Grudl
17-
* @author Jan Skrasek
1815
*/
1916
class Row extends Nette\Utils\ArrayHash implements IRow
2017
{

src/Database/SqlLiteral.php

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@
1212

1313
/**
1414
* SQL literal value.
15-
*
16-
* @author Jakub Vrana
17-
* @author Jan Skrasek
1815
*/
1916
class SqlLiteral extends Nette\Object
2017
{

src/Database/SqlPreprocessor.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* SQL preprocessor.
15-
*
16-
* @author David Grudl
1715
*/
1816
class SqlPreprocessor extends Nette\Object
1917
{

src/Database/Structure.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Cached reflection of database structure.
15-
*
16-
* @author Jan Skrasek
1715
*/
1816
class Structure extends Nette\Object implements IStructure
1917
{

src/Database/Table/ActiveRow.php

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
/**
1414
* Single row representation.
1515
* ActiveRow is based on the great library NotORM http://www.notorm.com written by Jakub Vrana.
16-
*
17-
* @author Jakub Vrana
18-
* @author Jan Skrasek
1916
*/
2017
class ActiveRow implements \IteratorAggregate, IRow
2118
{

src/Database/Table/GroupedSelection.php

-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
/**
1616
* Representation of filtered table grouped by some column.
1717
* GroupedSelection is based on the great library NotORM http://www.notorm.com written by Jakub Vrana.
18-
*
19-
* @author Jakub Vrana
20-
* @author Jan Skrasek
2118
*/
2219
class GroupedSelection extends Selection
2320
{

src/Database/Table/IRow.php

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
/**
1414
* Row interface.
15-
*
16-
* @author Jan Skrasek
1715
*/
1816
interface IRow extends Database\IRow
1917
{

src/Database/Table/IRowContainer.php

-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
/**
1414
* Container of database result fetched into IRow objects.
1515
*
16-
* @author Jan Skrasek
17-
*
1816
* @method IRow|bool fetch() Fetches single row object.
1917
* @method IRow[] fetchAll() Fetches all rows.
2018
*/

src/Database/Table/Selection.php

-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@
1616
* Filtered table representation.
1717
* Selection is based on the great library NotORM http://www.notorm.com written by Jakub Vrana.
1818
*
19-
* @author Jakub Vrana
20-
* @author Jan Skrasek
21-
*
2219
* @property-read string $sql
2320
*/
2421
class Selection extends Nette\Object implements \Iterator, IRowContainer, \ArrayAccess, \Countable

src/Database/Table/SqlBuilder.php

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
/**
1919
* Builds SQL query.
2020
* SqlBuilder is based on great library NotORM http://www.notorm.com written by Jakub Vrana.
21-
*
22-
* @author Jakub Vrana
23-
* @author Jan Skrasek
2421
*/
2522
class SqlBuilder extends Nette\Object
2623
{

tests/Database/connect.inc.php

-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
/**
44
* Test: Nette\Database test bootstrap.
5-
*
6-
* @author Jakub Vrana
7-
* @author Jan Skrasek
85
*/
96

107
require __DIR__ . '/../bootstrap.php';

0 commit comments

Comments
 (0)