mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-30 12:06:23 +00:00
8f029845b5
It was previously removed in 23824dd479
,
but this introduced a problem where an erroring Robo command
would also print an error about a missing RoboFile.php.
This could make debugging errors with Robo commands confusing, since an unrelated error was appearing.
11 lines
306 B
PHP
11 lines
306 B
PHP
<?php
|
|
/**
|
|
* This is the project's configuration for Robo task runner. This doesn't actually do anything
|
|
* other than exist, to prevent invalid Robo commands from returning unrelated errors.
|
|
*
|
|
* @see http://robo.li/
|
|
*/
|
|
class RoboFile extends \Robo\Tasks
|
|
{
|
|
// This space intentionally left blank.
|
|
}
|