aboutsummaryrefslogtreecommitdiff
path: root/lib/classes/Processes/ProcessProvider.php
blob: fcce4bd070f93cad6d9e651b00380359d966437b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
namespace Studip\Processes;

interface ProcessProvider
{

    /**
     * Returns an array of RunningProcess objects for the given user.
     *
     * @return array : RunningProcess[]
     */
   public static function getProcesses(\User $user): array;
}