Reformat Code
Hello !
I have a script with comments.
An Example:
class Factory { /** * statische Methode zum bauen neuer Objekte * * @param string $class_name - Klassenname des gewünschten Objektes * @param array $params - Parameter für den Konstruktor der Klasse * @return object vom Typ $class_name **/ static public function get( $class_name, $params = null ) { require_once $class_name.'.class.php'; return new $class_name( $params ); } } // Benutzung des Factory Pattern $test = Factory::get( 'MeineKlasse' );
If I format the code with 'Ctrl + Alt + L' then I get the following result:
class Factory
{
/** * statische Methode zum bauen neuer Objekte * * @param string $class_name - Klassenname des gewünschten Objektes * @param array $params - Parameter für den Konstruktor der Klasse * @return object vom Typ $class_name * */
static public function get($class_name, $params = null)
{
require_once $class_name . '.class.php';
return new $class_name($params);
}
} // Benutzung des Factory Pattern $test = Factory::get( 'MeineKlasse' );
How can I change the formatting of the doc block?
Your sincerly
Stephan
Please sign in to leave a comment.
Please provide two screenshots: of the current fomatting and of the desired one.