Skip to content

Commit

Permalink
Fix coding style
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Delisle <marc@infomarc.info>
  • Loading branch information
lem9 committed Mar 7, 2014
1 parent ff3c087 commit 749eba0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion libraries/schema/Export_Relation_Schema.class.php
@@ -1,7 +1,8 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Contains PMA_Export_Relation_Schema class which is inherited by all schema classes.
* Contains PMA_Export_Relation_Schema class which is inherited
* by all schema classes.
*
* @package PhpMyAdmin
*/
Expand Down
7 changes: 6 additions & 1 deletion libraries/schema/Pdf_Relation_Schema.class.php
Expand Up @@ -1067,7 +1067,12 @@ private function _strokeGrid()
$pdf->SetMargins(0, 0);
$pdf->SetDrawColor(200, 200, 200);
// Draws horizontal lines
for ($l = 0, $size = intval(($pdf->getPageHeight() - $topSpace - $bottomSpace) / $gridSize); $l <= $size; $l++) {
for ($l = 0,
$size = intval(
($pdf->getPageHeight() - $topSpace - $bottomSpace) / $gridSize
);
$l <= $size;
$l++) {
$pdf->line(
0, $l * $gridSize + $topSpace,
$pdf->getPageWidth(), $l * $gridSize + $topSpace
Expand Down

0 comments on commit 749eba0

Please sign in to comment.