This repository has been archived by the owner on Jul 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #263 from HvyIndustries/feature/document-symbol-pr…
…ovider v0.3.3 release
- Loading branch information
Showing
14 changed files
with
671 additions
and
214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<?php | ||
|
||
namespace Hvy\CraneDemo\MySubNamespace | ||
{ | ||
class MyClass implements MyInterface | ||
{ | ||
public $publicProperty; | ||
private $privateProperty; | ||
|
||
CONST MYCONST = ""; | ||
|
||
public function __construct() | ||
{ | ||
|
||
} | ||
|
||
public function publicMethod($param1) | ||
{ | ||
|
||
} | ||
|
||
private function privateMethod() | ||
{ | ||
|
||
} | ||
} | ||
|
||
trait MyTrait | ||
{ | ||
public $publicProperty; | ||
private $privateProperty; | ||
|
||
public function __construct() | ||
{ | ||
|
||
} | ||
|
||
public function publicMethod($param1) | ||
{ | ||
|
||
} | ||
|
||
private function privateMethod() | ||
{ | ||
|
||
} | ||
} | ||
|
||
interface MyInterface | ||
{ | ||
public function publicMethod($param1); | ||
} | ||
} | ||
|
||
namespace myOtherNamespace | ||
{ | ||
class MyClass | ||
{ | ||
|
||
} | ||
|
||
trait MyTrait | ||
{ | ||
|
||
} | ||
|
||
interface MyInterface | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.