diff --git a/composer.json b/composer.json index 40b0e7590..0cb80503b 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ "francodacosta/phmagick": "0.4.*@dev", "intervention/image": "~2.3", "ircmaxell/random-lib": "~1.1", - "leafo/scssphp": "~0.1", + "leafo/scssphp": "~0.2", "maennchen/zipstream-php": "~0.3", "moontoast/math": "~1.1", "ramsey/uuid": "~2.8", diff --git a/modules/batchmake/tests/library/ExecutorMock.php b/modules/batchmake/tests/library/ExecutorMock.php index 9c7d3e625..5565e5f63 100644 --- a/modules/batchmake/tests/library/ExecutorMock.php +++ b/modules/batchmake/tests/library/ExecutorMock.php @@ -17,19 +17,19 @@ See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ + include_once BASE_PATH.'/library/KWUtils.php'; -/** Mock object class that will intercept calls to "exec" for testing purposes, - * as test setups may not have certain exes installed on the system that the - * exec will try to run. +/** + * Mock object class that will intercept calls to "exec" for testing purposes, + * as test setups may not have certain exes installed on the system that the + * exec will try to run. */ class Batchmake_ExecutorMock { protected $mockExes; - /** - * constructor. - */ + /** Constructor. */ public function __construct() { // assign exe names to mock objects @@ -69,4 +69,4 @@ public function exec($command, &$output = null, $chdir = '', &$return_val = null KWUtils::exec($command, $output, $chdir, $return_val); } } -} // end class +} diff --git a/modules/example/constant/module.php b/modules/example/constant/module.php index ee9be1634..a865025b9 100644 --- a/modules/example/constant/module.php +++ b/modules/example/constant/module.php @@ -18,4 +18,4 @@ limitations under the License. =========================================================================*/ -// define('MIDAS_EXAMPLE', 0); +define('MIDAS_EXAMPLE', 0);