浏览代码

Fix missing semicolons.

Andrew Berry 10 年之前
父节点
当前提交
5b7c5cf41e

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

@@ -3,4 +3,4 @@
  * interface templateInterface_1
  * interface templateInterface_1
  * trait temlpateTrait_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
  * trait temlpateTrait_2
  */
  */
 <?php
 <?php
-    echo $code
+    echo $code;
 ?>
 ?>