Permalink
Cannot retrieve contributors at this time
16 lines (14 sloc)
206 Bytes
|
<?php |
|
/* |
|
Plugin Name: PHPDoc für Klassen |
|
*/ |
|
|
|
class Meine_Klasse { |
|
|
|
/** |
|
* Prüft ob Motor gerade läuft. |
|
* |
|
* @since 1.0.0 |
|
* @access private |
|
* @var bool $running |
|
*/ |
|
private $running = false; |
|
} |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.