Example #1
0
 /**
  * Copy all the files to /socket
  *
  * @param string $path
  * @return bool
  */
 protected function copyFiles($path)
 {
     if (!$this->files->isDirectory($path)) {
         return $this->files->copyDirectory(__DIR__ . '/stubs', $path);
     }
     return false;
 }