apply phpdoc_no_empty_return fixer

This commit is contained in:
Dariusz Ruminski
2015-02-26 21:40:19 +01:00
parent 6dd2a45358
commit 42c34b6e34
7 changed files with 0 additions and 34 deletions
-3
View File
@@ -102,7 +102,6 @@ function buildPath($directory, $filename = null, $extension = null)
*
* @param string $directory
* @access public
* @return void
*/
function createDirectory($directory)
{
@@ -120,7 +119,6 @@ function createDirectory($directory)
* @param string $extension extension of the file without "."
* @param string $content the content of the file
* @access public
* @return void
*/
function createFile($directory, $filename, $extension, $content = "")
{
@@ -144,7 +142,6 @@ function createFile($directory, $filename, $extension, $content = "")
*
* @param mixed $example_name
* @access public
* @return void
*/
function main($example_name)
{
-2
View File
@@ -31,8 +31,6 @@ interface Mustache_Cache
*
* @param string $key
* @param string $value
*
* @return void
*/
public function cache($key, $value);
}
-4
View File
@@ -60,8 +60,6 @@ class Mustache_Cache_FilesystemCache extends Mustache_Cache_AbstractCache
*
* @param string $key
* @param string $value
*
* @return void
*/
public function cache($key, $value)
{
@@ -125,8 +123,6 @@ class Mustache_Cache_FilesystemCache extends Mustache_Cache_AbstractCache
*
* @param string $fileName
* @param string $value
*
* @return void
*/
private function writeFile($fileName, $value)
{
-2
View File
@@ -34,8 +34,6 @@ class Mustache_Cache_NoopCache extends Mustache_Cache_AbstractCache
*
* @param string $key
* @param string $value
*
* @return void
*/
public function cache($key, $value)
{
-1
View File
@@ -46,7 +46,6 @@
*
* @@ hello
* Hello, {{ name }}!
*
*/
class Mustache_Loader_InlineLoader implements Mustache_Loader
{
-4
View File
@@ -18,8 +18,6 @@ interface Mustache_Loader_MutableLoader
* Set an associative array of Template sources for this loader.
*
* @param array $templates
*
* @return void
*/
public function setTemplates(array $templates);
@@ -28,8 +26,6 @@ interface Mustache_Loader_MutableLoader
*
* @param string $name
* @param string $template Mustache Template source
*
* @return void
*/
public function setTemplate($name, $template);
}
-18
View File
@@ -45,8 +45,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function emergency($message, array $context = array());
@@ -58,8 +56,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function alert($message, array $context = array());
@@ -70,8 +66,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function critical($message, array $context = array());
@@ -81,8 +75,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function error($message, array $context = array());
@@ -94,8 +86,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function warning($message, array $context = array());
@@ -104,8 +94,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function notice($message, array $context = array());
@@ -116,8 +104,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function info($message, array $context = array());
@@ -126,8 +112,6 @@ interface Mustache_Logger
*
* @param string $message
* @param array $context
*
* @return null
*/
public function debug($message, array $context = array());
@@ -137,8 +121,6 @@ interface Mustache_Logger
* @param mixed $level
* @param string $message
* @param array $context
*
* @return null
*/
public function log($level, $message, array $context = array());
}