Whitespace cleanup

This commit is contained in:
Michael Thessel 2013-04-12 01:18:57 +00:00
parent 6ade12ac15
commit 41644d72e5

View File

@ -51,7 +51,7 @@ snippet m
${3} ${3}
} }
# setter method # setter method
snippet sm snippet sm
/** /**
* Sets the value of ${1:foo} * Sets the value of ${1:foo}
* *
@ -104,7 +104,7 @@ snippet S
$_SERVER['${1:variable}']${2} $_SERVER['${1:variable}']${2}
snippet SS snippet SS
$_SESSION['${1:variable}']${2} $_SESSION['${1:variable}']${2}
# the following are old ones # the following are old ones
snippet inc snippet inc
include '${1:file}';${2} include '${1:file}';${2}
@ -205,7 +205,7 @@ snippet doc_h
* @copyright ${4:$2}, `strftime('%d %B, %Y')` * @copyright ${4:$2}, `strftime('%d %B, %Y')`
* @package ${5:default} * @package ${5:default}
*/ */
# Interface # Interface
snippet interface snippet interface
/** /**
@ -344,8 +344,8 @@ snippet vd
snippet vdd snippet vdd
var_dump(${1}); die(${2:}); var_dump(${1}); die(${2:});
snippet http_redirect snippet http_redirect
header ("HTTP/1.1 301 Moved Permanently"); header ("HTTP/1.1 301 Moved Permanently");
header ("Location: ".URL); header ("Location: ".URL);
exit(); exit();
# Getters & Setters # Getters & Setters
snippet gs snippet gs
@ -375,7 +375,7 @@ snippet gs
snippet ags snippet ags
/** /**
* ${1:description} * ${1:description}
* *
* @${7} * @${7}
*/ */
${2:protected} $${3:foo}; ${2:protected} $${3:foo};