Skip to content

Commit

Permalink
style: cs fixes
Browse files Browse the repository at this point in the history
belgattitude committed Dec 21, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 0cdda1b commit cf8bf3d
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/Soluble/Japha/Bridge/Driver/Pjb62/SocketHandler.php
Original file line number Diff line number Diff line change
@@ -102,6 +102,7 @@ public function keepAlive(): void

/**
* @throws BrokenConnectionException|AuthenticationException
*
* @return never
*/
public function shutdownBrokenConnection(string $msg = '', int $code = null): void
5 changes: 2 additions & 3 deletions test/SolubleTestFactories.php
Original file line number Diff line number Diff line change
@@ -31,7 +31,6 @@ public static function startJavaBridgeServer()
// For multiple ways phpunit return true
if ($_SERVER['AUTORUN_PJB_STANDALONE'] === true ||
$_SERVER['AUTORUN_PJB_STANDALONE'] === 'true') {

if (self::$standaloneServer === null) {
$server_address = self::getJavaBridgeServerAddress();
//$url = parse_url($server_address, PHP_URL_HOST);
@@ -43,8 +42,8 @@ public static function startJavaBridgeServer()
__DIR__.'/resources/*.jar',
],
'server_jar' => __DIR__.'/../vendor/belgattitude/pjbserver-tools/resources/pjb713_standalone/JavaBridge.jar',
'log_file' => sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'soluble-japha-pjbserver.log',
'pid_file' => sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'soluble-japha-pjbserver.pid',
'log_file' => sys_get_temp_dir().DIRECTORY_SEPARATOR.'soluble-japha-pjbserver.log',
'pid_file' => sys_get_temp_dir().DIRECTORY_SEPARATOR.'soluble-japha-pjbserver.pid',
];

$config = new StandaloneServer\Config($params);

0 comments on commit cf8bf3d

Please sign in to comment.