Skip to content

Commit

Permalink
Fix scrutinizer
Browse files Browse the repository at this point in the history
belgattitude committed Mar 2, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 7bb85da commit db30493
Showing 2 changed files with 11 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Soluble/Japha/Bridge/Driver/Pjb62/AbstractJava.php
Original file line number Diff line number Diff line change
@@ -52,16 +52,16 @@ abstract class AbstractJava implements \IteratorAggregate, \ArrayAccess, JavaTyp
/**
* @var JavaProxy
*/
protected $__delegate;
public $__delegate;
protected $__serialID;
protected $__factory;
public $__factory;

/**
* @var int
*/
protected $__java;
protected $__signature;
protected $__cancelProxyCreationTag;
public $__java;
public $__signature;
public $__cancelProxyCreationTag;

protected function __createDelegate()
{
6 changes: 6 additions & 0 deletions src/Soluble/Japha/Bridge/Driver/Pjb62/JavaProxy.php
Original file line number Diff line number Diff line change
@@ -47,6 +47,12 @@
* @method JavaClass getClass() return object class name
* @method bool equals(JavaObject $object)
* @method string toString()
* @method void offsetUnset()
* @method void offsetSet($key, $value)
* @method mixed offsetGet($key)
* @method bool offsetExists($key)
* @method mixed getIterator()
* @method string getName()
*/
class JavaProxy implements JavaType
{

0 comments on commit db30493

Please sign in to comment.