This website requires JavaScript.
Explore
Gist
Help
Register
Sign In
Mirrors
/
atom-beautify
mirror of
https://github.com/Glavin001/atom-beautify.git
Watch
1
Star
0
Fork
You've already forked atom-beautify
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
9cea8e3007
atom-beautify
/
examples
/
simple-jsbeautifyrc
/
php
/
expected
/
test2.php
6 lines
67 B
PHP
Raw
Normal View
History
Unescape
Escape
See #51. Work on improving PHP support and deubgging errors.
2014-08-03 14:22:48 -06:00
<
?
php
See #18. Beautify most of the expected tests. I was unable to do Python and SQL, as I am having Python problems on my laptop. Hopefully I will be able to figure this out soon.
2014-12-27 23:38:06 -07:00
function
add
(
$a
,
$b
)
{
return
$a
+
$b
;
}
echo
add
(
1
,
2
);