
| Current Path : /var/www/html/rocksensor/vendor/consolidation/robo/src/Task/Npm/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/vendor/consolidation/robo/src/Task/Npm/Tasks.php |
<?php
namespace Robo\Task\Npm;
trait Tasks
{
/**
* @param null|string $pathToNpm
*
* @return \Robo\Task\Npm\Install|\Robo\Collection\CollectionBuilder
*/
protected function taskNpmInstall($pathToNpm = null)
{
return $this->task(Install::class, $pathToNpm);
}
/**
* @param null|string $pathToNpm
*
* @return \Robo\Task\Npm\Update|\Robo\Collection\CollectionBuilder
*/
protected function taskNpmUpdate($pathToNpm = null)
{
return $this->task(Update::class, $pathToNpm);
}
}