Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jul 1, 2015
1 parent 997f80b commit 187df04
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Database/Helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ public static function detectType($type)
*/
public static function loadFromFile(Connection $connection, $file)
{
@set_time_limit(0); // intentionally @
@set_time_limit(0); // @ function may be disabled

$handle = @fopen($file, 'r'); // intentionally @
$handle = @fopen($file, 'r'); // @ is escalated to exception
if (!$handle) {
throw new Nette\FileNotFoundException("Cannot open file '$file'.");
}
Expand Down
1 change: 0 additions & 1 deletion src/Database/Structure.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,6 @@ protected function needStructure()

/**
* @internal
* @ignore
*/
public function loadStructure()
{
Expand Down
1 change: 0 additions & 1 deletion src/Database/Table/ActiveRow.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ public function __construct(array $data, Selection $table)

/**
* @internal
* @ignore
*/
public function setTable(Selection $table)
{
Expand Down

0 comments on commit 187df04

Please sign in to comment.