Ignore:
Timestamp:
Apr 6, 2020, 11:17:40 PM (4 years ago)
Author:
chronos
Message:
  • Modified: Improved code format.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Process.php

    r816 r873  
    2020  function Start()
    2121  {
    22     if(!$this->IsRunning())
     22    if (!$this->IsRunning())
    2323    {
    2424      $DescriptorSpec = array(
     
    3838  function Stop()
    3939  {
    40     if($this->IsRunning())
     40    if ($this->IsRunning())
    4141    {
    4242      proc_close($this->Handle);
     
    4747  function IsRunning()
    4848  {
    49     return(is_resource($this->Handle));
     49    return (is_resource($this->Handle));
    5050  }
    5151}
Note: See TracChangeset for help on using the changeset viewer.