Skip to content

Commit dd524da

Browse files
committed
add phpfiles
1 parent d6a17e5 commit dd524da

File tree

4 files changed

+51
-0
lines changed

4 files changed

+51
-0
lines changed

jenkins_study3/phpfiles/.project

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>jenkins_study</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.wst.validation.validationbuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.dltk.core.scriptbuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
</buildSpec>
19+
<natures>
20+
<nature>org.eclipse.php.core.PHPNature</nature>
21+
</natures>
22+
</projectDescription>

jenkins_study3/phpfiles/Foo.php

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
class Foo {
3+
function thisIsCopyAndPastePrograming() {
4+
echo 1;
5+
echo 2;
6+
echo 3;
7+
echo 4;
8+
echo 5;
9+
}
10+
11+
function plus($a, $b) {
12+
return $a * $b;
13+
}
14+
}

jenkins_study3/phpfiles/FooTest.php

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php

jenkins_study3/phpfiles/Hoge.php

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
class Hoge {
3+
function thisIsCopyAndPastePrograming() {
4+
echo 1;
5+
echo 2;
6+
echo 3;
7+
echo 4;
8+
echo 5;
9+
}
10+
11+
function method($unuseParameter, $useParameter) {
12+
echo $useParameter;
13+
}
14+
}

0 commit comments

Comments
 (0)