File tree 4 files changed +51
-0
lines changed
4 files changed +51
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
1
+ <?php
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments