Skip to content

Commit 0e15a41

Browse files
committed
fixes
1 parent 47b7782 commit 0e15a41

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

generated/uodbc.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,10 @@ function odbc_primarykeys($connection_id, string $catalog, string $schema, strin
676676
/**
677677
* Prints all rows from a result identifier produced by
678678
* odbc_exec. The result is printed in HTML table format.
679+
* The data is not escaped.
680+
*
681+
* This function is not supposed to be used in production environments; it is
682+
* merely meant for development purposes, to get a result set quickly rendered.
679683
*
680684
* @param resource $result_id The result identifier.
681685
* @param string $format Additional overall table formatting.

generator/src/DeprecateCommand.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
namespace Safe;
55

6-
76
use http\Exception\RuntimeException;
87
use Symfony\Component\Console\Command\Command;
98
use Symfony\Component\Console\Input\InputArgument;
@@ -26,6 +25,7 @@ protected function configure(): void
2625

2726
protected function execute(InputInterface $input, OutputInterface $output)
2827
{
28+
/** @var string $moduleName */
2929
$moduleName = $input->getArgument('module');
3030

3131
$moduleFilePath = self::GENERATE_DIRECTORY."$moduleName.php";
@@ -62,5 +62,4 @@ public static function getExceptionFilePath(string $moduleName): string
6262
{
6363
return "Exceptions/".ucfirst($moduleName)."Exception.php";
6464
}
65-
66-
}
65+
}

generator/src/DocPage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public function detectFalsyFunction(): bool
108108

109109
if (preg_match('/&gd\.return\.identifier;/m', $file)) {
110110
return true;
111-
}
111+
}
112112
if (preg_match('/&gd\.return\.identifier;/m', $file)) {
113113
return true;
114114
}

0 commit comments

Comments
 (0)