apply phpdoc_no_empty_return fixer
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
@@ -31,8 +31,6 @@ interface Mustache_Cache
|
||||
*
|
||||
* @param string $key
|
||||
* @param string $value
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function cache($key, $value);
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -46,7 +46,6 @@
|
||||
*
|
||||
* @@ hello
|
||||
* Hello, {{ name }}!
|
||||
*
|
||||
*/
|
||||
class Mustache_Loader_InlineLoader implements Mustache_Loader
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user