Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dg committed Jun 30, 2015
1 parent edd353b commit 6846746
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 @@ -165,7 +165,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 @@ -38,7 +38,6 @@ public function __construct(array $data, Selection $table)

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

0 comments on commit 6846746

Please sign in to comment.