Skip to content

Commit ec1d2b7

Browse files
committed
This should fix all missing ending newlines
1 parent 13f9500 commit ec1d2b7

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

Symfony/app/.htaccess

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
deny from all
1+
deny from all
2+

Symfony/src/.htaccess

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
deny from all
1+
deny from all
2+

Symfony/src/Codebender/CompilerBundle/Handler/MCUHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,4 +206,4 @@ class MCUHandler
206206
"attiny20" => "__AVR_ATtiny20__",
207207
"attiny40" => "__AVR_ATtiny40__");
208208

209-
}
209+
}

Symfony/src/Codebender/CompilerBundle/Handler/PostprocessingHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ function ansi_to_html($text)
120120

121121
return $text;
122122
}
123-
}
123+
}

Symfony/src/Codebender/CompilerBundle/Handler/PreprocessingHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,4 +293,4 @@ function validate_input($request)
293293
// Request is valid.
294294
return $request;
295295
}
296-
}
296+
}

Symfony/src/Codebender/CompilerBundle/Handler/UtilityHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ function debug_exec($command, /** @noinspection PhpUnusedParameterInspection */
142142
echo "$ $command\n";
143143
passthru("$command 2>&1");
144144
}
145-
}
145+
}

Symfony/src/Codebender/CompilerBundle/Resources/config/routing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ codebender_compiler_delete_all:
1616

1717
codebender_compiler_delete_specific:
1818
pattern: /{auth_key}/{version}/delete/{option}/{to_delete}
19-
defaults: { _controller: CodebenderCompilerBundle:Default:deleteSpecificObjects }
19+
defaults: { _controller: CodebenderCompilerBundle:Default:deleteSpecificObjects }

Symfony/src/Codebender/CompilerBundle/Resources/config/services.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ services:
2525
- [pushHandler, [@compiler_log_handler]]
2626
compiler_log_handler:
2727
class: Monolog\Handler\StreamHandler
28-
arguments: [%kernel.logs_dir%/compiler.log]
28+
arguments: [%kernel.logs_dir%/compiler.log]

0 commit comments

Comments
 (0)