Remove section about executing cronjobs via CLI
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 13 Dec 2022 09:36:37 +0000 (10:36 +0100)
committerTim Düsterhus <duesterhus@woltlab.com>
Tue, 13 Dec 2022 09:36:37 +0000 (10:36 +0100)
This does not really belong into the developer documentation, but rather the
manual. In any case support for this was removed in WoltLab/WCF#5171.

docs/php/api/cronjobs.md

index d2757e85f692f44eb0f59968405a1c8c9caaf4c3..517ff660fa908876956d215b5c603f866e61cd51 100644 (file)
@@ -22,16 +22,3 @@ Every cronjob needs to implement the `wcf\system\cronjob\ICronjob` interface whi
 This method is called by [wcf\system\cronjob\CronjobScheduler](https://github.com/WoltLab/WCF/blob/master/wcfsetup/install/files/lib/system/cronjob/CronjobScheduler.class.php) when executing the cronjobs.
 
 In practice, however, you should extend the `AbstractCronjob` class and also call the `AbstractCronjob::execute()` method as it fires an event which makes cronjobs extendable by plugins (see [event documentation](events.md)).
-
-
-## Executing Cronjobs Through CLI
-
-Cronjobs can be executed through the command-line interface (CLI):
-
-```
-php /path/to/wcf/cli.php << 'EOT'
-USERNAME
-PASSWORD
-cronjob execute
-EOT
-```
\ No newline at end of file