소스 검색

Fix missing semicolons.

Andrew Berry 10 년 전
부모
커밋
5b7c5cf41e
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      tests/Composer/Test/Autoload/Fixtures/template/template_1.php
  2. 1 1
      tests/Composer/Test/Autoload/Fixtures/template/template_2.php

+ 1 - 1
tests/Composer/Test/Autoload/Fixtures/template/template_1.php

@@ -3,4 +3,4 @@
  * interface templateInterface_1
  * trait temlpateTrait_1
  */
-<?php echo $code
+<?php echo $code;

+ 1 - 1
tests/Composer/Test/Autoload/Fixtures/template/template_2.php

@@ -4,5 +4,5 @@
  * trait temlpateTrait_2
  */
 <?php
-    echo $code
+    echo $code;
 ?>