Skip to content

Commit

Permalink
Prep 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed May 18, 2017
1 parent 7046b76 commit 5877e5e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@test"
"@phpstan"
],
"fix": [
"@cs-fix"
Expand Down
4 changes: 2 additions & 2 deletions src/Soluble/Japha/Bridge/Driver/Pjb62/AbstractJava.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ public function __wakeup()
$this->__createDelegate();
}
$this->__delegate->__wakeup();
$this->__java = $this->__delegate->__java;
$this->__client = $this->__delegate->__client;
$this->__java = $this->__delegate->get__java();
$this->__client = $this->__delegate->get__signature();
}

/**
Expand Down
2 changes: 0 additions & 2 deletions src/Soluble/Japha/Bridge/Driver/Pjb62/Pjb62Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@ public function __construct(array $options, LoggerInterface $logger = null)
$msg = 'Invalid arguments, cannot initiate connection to java-bridge.';
$this->logger->error("[soluble-japha] $msg (" . $e->getMessage() . ')');
throw $e;
} catch (\Exception $e) {
throw $e;
}
}

Expand Down
3 changes: 3 additions & 0 deletions src/Soluble/Japha/Interfaces/JavaType.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@

namespace Soluble\Japha\Interfaces;

/**
* @method JavaClass getClass(string $type) Java('java.lang.Class')
*/
interface JavaType
{
/**
Expand Down

0 comments on commit 5877e5e

Please sign in to comment.