Skip to content

Commit 0676795

Browse files
committed
typos
1 parent c20bef3 commit 0676795

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Database/Context.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public function queryArgs($statement, array $params)
9696

9797
/**
9898
* @param string
99-
* @return Nette\Database\Table\Selection
99+
* @return Table\Selection
100100
*/
101101
public function table($table)
102102
{

src/Database/Structure.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818
class Structure extends Nette\Object implements IStructure
1919
{
20-
/** @var Nette\Database\Connection */
20+
/** @var Connection */
2121
protected $connection;
2222

2323
/** @var Nette\Caching\Cache */
@@ -30,7 +30,7 @@ class Structure extends Nette\Object implements IStructure
3030
protected $isRebuilt = FALSE;
3131

3232

33-
public function __construct(Nette\Database\Connection $connection, Nette\Caching\IStorage $cacheStorage)
33+
public function __construct(Connection $connection, Nette\Caching\IStorage $cacheStorage)
3434
{
3535
$this->connection = $connection;
3636
$this->cache = new Nette\Caching\Cache($cacheStorage, 'Nette.Database.Structure.' . md5($this->connection->getDsn()));

src/Database/Table/Selection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
class Selection extends Nette\Object implements \Iterator, IRowContainer, \ArrayAccess, \Countable
2525
{
26-
/** @var Nette\Database\Context */
26+
/** @var Context */
2727
protected $context;
2828

2929
/** @var IConventions */

src/Database/deprecated/IReflection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
/** @deprecated */
14-
interface IReflection extends Nette\Database\IConventions
14+
interface IReflection extends IConventions
1515
{
1616
/** @deprecated */
1717
const

0 commit comments

Comments
 (0)