Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Fix style and update more composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Sep 14, 2015
1 parent c3cc34f commit 48b2593
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -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",
Expand Down
14 changes: 7 additions & 7 deletions modules/batchmake/tests/library/ExecutorMock.php
Expand Up @@ -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
Expand Down Expand Up @@ -69,4 +69,4 @@ public function exec($command, &$output = null, $chdir = '', &$return_val = null
KWUtils::exec($command, $output, $chdir, $return_val);
}
}
} // end class
}
2 changes: 1 addition & 1 deletion modules/example/constant/module.php
Expand Up @@ -18,4 +18,4 @@
limitations under the License.
=========================================================================*/

// define('MIDAS_EXAMPLE', 0);
define('MIDAS_EXAMPLE', 0);

0 comments on commit 48b2593

Please sign in to comment.