Changeset 13
- Timestamp:
- Apr 7, 2020, 9:18:01 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/Process.php
r11 r13 20 20 function Start() 21 21 { 22 if (!$this->IsRunning())22 if (!$this->IsRunning()) 23 23 { 24 24 $DescriptorSpec = array( … … 38 38 function Stop() 39 39 { 40 if ($this->IsRunning())40 if ($this->IsRunning()) 41 41 { 42 42 proc_close($this->Handle); … … 47 47 function IsRunning() 48 48 { 49 return (is_resource($this->Handle));49 return is_resource($this->Handle); 50 50 } 51 51 }
Note:
See TracChangeset
for help on using the changeset viewer.