-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
211 changed files
with
6,165 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<idea-plugin version="2"> | ||
<id>io.ruudboon.phpstorm-phalcon-4-autocomplete</id> | ||
<name>Phalcon 4 Autocomplete</name> | ||
<version>4.0.6</version> | ||
<version>4.1.0</version> | ||
<vendor email="[email protected]" url="https://github.com/ruudboon/phpstorm-phalcon-4-autocomplete">Ruud Boon</vendor> | ||
|
||
<description><![CDATA[ | ||
Provides autocomplete functionality for Phalcon 4. | ||
]]></description> | ||
|
||
<change-notes><![CDATA[ | ||
<h3>4.0.6</h3> | ||
<h3>4.1.0</h3> | ||
<ul> | ||
<li>IDE Stubs for Phalcon 4.0.6</li> | ||
<li>IDE Stubs for Phalcon 4.1.0</li> | ||
</ul> | ||
]]> | ||
</change-notes> | ||
|
Binary file not shown.
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
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
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,104 @@ | ||
<?php | ||
|
||
/* This file is part of the Phalcon Framework. | ||
* | ||
* (c) Phalcon Team <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE.txt | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Phalcon\Collection; | ||
|
||
/** | ||
* Phalcon\Collection\CollectionInterface | ||
* | ||
* Interface for Phalcon\Collection class | ||
*/ | ||
interface CollectionInterface | ||
{ | ||
|
||
/** | ||
* @param string $element | ||
* @return mixed | ||
*/ | ||
public function __get(string $element); | ||
|
||
/** | ||
* @param string $element | ||
* @return bool | ||
*/ | ||
public function __isset(string $element): bool; | ||
|
||
/** | ||
* @param string $element | ||
* @param mixed $value | ||
* @return void | ||
*/ | ||
public function __set(string $element, $value); | ||
|
||
/** | ||
* @param string $element | ||
* @return void | ||
*/ | ||
public function __unset(string $element); | ||
|
||
/** | ||
* @return void | ||
*/ | ||
public function clear(); | ||
|
||
/** | ||
* @param string $element | ||
* @param mixed $defaultValue | ||
* @param string $cast | ||
* @return mixed | ||
*/ | ||
public function get(string $element, $defaultValue = null, string $cast = null); | ||
|
||
/** | ||
* @param bool $insensitive | ||
* @return array | ||
*/ | ||
public function getKeys(bool $insensitive = true): array; | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function getValues(): array; | ||
|
||
/** | ||
* @param string $element | ||
* @return bool | ||
*/ | ||
public function has(string $element): bool; | ||
|
||
/** | ||
* @param array $data | ||
* @return void | ||
*/ | ||
public function init(array $data = array()); | ||
|
||
/** | ||
* @param string $element | ||
* @return void | ||
*/ | ||
public function remove(string $element); | ||
|
||
/** | ||
* @param string $element | ||
* @param mixed $value | ||
* @return void | ||
*/ | ||
public function set(string $element, $value); | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function toArray(): array; | ||
|
||
/** | ||
* @param int $options | ||
* @return string | ||
*/ | ||
public function toJson(int $options = 79): string; | ||
} |
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,44 @@ | ||
<?php | ||
|
||
/* This file is part of the Phalcon Framework. | ||
* | ||
* (c) Phalcon Team <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE.txt | ||
* file that was distributed with this source code. | ||
*/ | ||
namespace Phalcon\Config; | ||
|
||
/** | ||
* Phalcon\Config\ConfigInterface | ||
* | ||
* Interface for Phalcon\Config class | ||
*/ | ||
interface ConfigInterface extends \Phalcon\Collection\CollectionInterface | ||
{ | ||
|
||
/** | ||
* @return string | ||
*/ | ||
public function getPathDelimiter(): string; | ||
|
||
/** | ||
* @param mixed $toMerge | ||
* @return ConfigInterface | ||
*/ | ||
public function merge($toMerge): ConfigInterface; | ||
|
||
/** | ||
* @param string $path | ||
* @param mixed $defaultValue | ||
* @param mixed $delimiter | ||
* @return mixed|null | ||
*/ | ||
public function path(string $path, $defaultValue = null, $delimiter = null); | ||
|
||
/** | ||
* @param string $delimiter | ||
* @return ConfigInterface | ||
*/ | ||
public function setPathDelimiter(string $delimiter = null): ConfigInterface; | ||
} |
Oops, something went wrong.