Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
6578cfbd
Commit
6578cfbd
authored
Jun 25, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated phpdoc and classmap
parent
284ec069
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
24 additions
and
14 deletions
+24
-14
PhpDocController.php
build/controllers/PhpDocController.php
+1
-0
ApiMarkdownTrait.php
extensions/apidoc/helpers/ApiMarkdownTrait.php
+1
-2
IndexFileAnalyzer.php
extensions/apidoc/helpers/IndexFileAnalyzer.php
+1
-2
VKontakte.php
extensions/authclient/clients/VKontakte.php
+1
-2
ActiveRecord.php
extensions/elasticsearch/ActiveRecord.php
+2
-2
classes.php
framework/classes.php
+3
-0
MigrationInterface.php
framework/db/MigrationInterface.php
+1
-2
Schema.php
framework/db/Schema.php
+4
-0
Transaction.php
framework/db/Transaction.php
+4
-0
Schema.php
framework/db/sqlite/Schema.php
+3
-0
BaseConsole.php
framework/helpers/BaseConsole.php
+0
-2
Mutex.php
framework/mutex/Mutex.php
+0
-0
Request.php
framework/web/Request.php
+1
-0
MaskedInput.php
framework/widgets/MaskedInput.php
+1
-1
MaskedInputAsset.php
framework/widgets/MaskedInputAsset.php
+1
-1
No files found.
build/controllers/PhpDocController.php
View file @
6578cfbd
...
...
@@ -126,6 +126,7 @@ class PhpDocController extends Controller
'/docs/'
,
'/extensions/apidoc/helpers/PrettyPrinter.php'
,
'/extensions/apidoc/helpers/ApiIndexer.php'
,
'/extensions/apidoc/helpers/ApiMarkdownLaTeX.php'
,
'/extensions/codeception/TestCase.php'
,
'/extensions/codeception/DbTestCase.php'
,
'/extensions/composer/'
,
...
...
extensions/apidoc/helpers/ApiMarkdownTrait.php
View file @
6578cfbd
...
...
@@ -107,4 +107,4 @@ trait ApiMarkdownTrait
return
[
'[['
,
2
];
}
}
\ No newline at end of file
}
extensions/apidoc/helpers/IndexFileAnalyzer.php
View file @
6578cfbd
...
...
@@ -63,4 +63,4 @@ class IndexFileAnalyzer extends Markdown
}
return
parent
::
renderList
(
$block
);
}
}
\ No newline at end of file
}
extensions/authclient/clients/VKontakte.php
View file @
6578cfbd
...
...
@@ -101,4 +101,4 @@ class VKontakte extends OAuth2
{
return
'VKontakte'
;
}
}
\ No newline at end of file
}
extensions/elasticsearch/ActiveRecord.php
View file @
6578cfbd
...
...
@@ -40,9 +40,9 @@ use yii\helpers\StringHelper;
*
* You may override [[index()]] and [[type()]] to define the index and type this record represents.
*
* @property
float $score Returns the score of this record when it was retrieved via a [[find()]] query
. This
* @property
array|null $highlight A list of arrays with highlighted excerpts indexed by field names
. This
* property is read-only.
* @property
array $highlight Returns a list of arrays with highlighted excerpts indexed by field names
. This
* @property
float $score Returns the score of this record when it was retrieved via a [[find()]] query
. This
* property is read-only.
*
* @author Carsten Brandt <mail@cebe.cc>
...
...
framework/classes.php
View file @
6578cfbd
...
...
@@ -54,6 +54,7 @@ return [
'yii\base\Widget'
=>
YII_PATH
.
'/base/Widget.php'
,
'yii\behaviors\AttributeBehavior'
=>
YII_PATH
.
'/behaviors/AttributeBehavior.php'
,
'yii\behaviors\BlameableBehavior'
=>
YII_PATH
.
'/behaviors/BlameableBehavior.php'
,
'yii\behaviors\SluggableBehavior'
=>
YII_PATH
.
'/behaviors/SluggableBehavior.php'
,
'yii\behaviors\TimestampBehavior'
=>
YII_PATH
.
'/behaviors/TimestampBehavior.php'
,
'yii\caching\ApcCache'
=>
YII_PATH
.
'/caching/ApcCache.php'
,
'yii\caching\Cache'
=>
YII_PATH
.
'/caching/Cache.php'
,
...
...
@@ -96,7 +97,9 @@ return [
'yii\db\DataReader'
=>
YII_PATH
.
'/db/DataReader.php'
,
'yii\db\Exception'
=>
YII_PATH
.
'/db/Exception.php'
,
'yii\db\Expression'
=>
YII_PATH
.
'/db/Expression.php'
,
'yii\db\IntegrityException'
=>
YII_PATH
.
'/db/IntegrityException.php'
,
'yii\db\Migration'
=>
YII_PATH
.
'/db/Migration.php'
,
'yii\db\MigrationInterface'
=>
YII_PATH
.
'/db/MigrationInterface.php'
,
'yii\db\Query'
=>
YII_PATH
.
'/db/Query.php'
,
'yii\db\QueryBuilder'
=>
YII_PATH
.
'/db/QueryBuilder.php'
,
'yii\db\QueryInterface'
=>
YII_PATH
.
'/db/QueryInterface.php'
,
...
...
framework/db/MigrationInterface.php
View file @
6578cfbd
...
...
@@ -32,4 +32,4 @@ interface MigrationInterface
* and should not proceed further. All other return values mean the migration succeeds.
*/
public
function
down
();
}
\ No newline at end of file
}
framework/db/Schema.php
View file @
6578cfbd
...
...
@@ -25,6 +25,10 @@ use yii\caching\GroupDependency;
* @property string[] $tableNames All table names in the database. This property is read-only.
* @property TableSchema[] $tableSchemas The metadata for all tables in the database. Each array element is an
* instance of [[TableSchema]] or its child class. This property is read-only.
* @property string $transactionIsolationLevel The transaction isolation level to use for this transaction.
* This can be one of [[Transaction::READ_UNCOMMITTED]], [[Transaction::READ_COMMITTED]],
* [[Transaction::REPEATABLE_READ]] and [[Transaction::SERIALIZABLE]] but also a string containing DBMS specific
* syntax to be used after `SET TRANSACTION ISOLATION LEVEL`. This property is write-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
framework/db/Transaction.php
View file @
6578cfbd
...
...
@@ -32,6 +32,10 @@ use yii\base\InvalidConfigException;
*
* @property boolean $isActive Whether this transaction is active. Only an active transaction can [[commit()]]
* or [[rollBack()]]. This property is read-only.
* @property string $isolationLevel The transaction isolation level to use for this transaction. This can be
* one of [[READ_UNCOMMITTED]], [[READ_COMMITTED]], [[REPEATABLE_READ]] and [[SERIALIZABLE]] but also a string
* containing DBMS specific syntax to be used after `SET TRANSACTION ISOLATION LEVEL`. This property is
* write-only.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
...
...
framework/db/sqlite/Schema.php
View file @
6578cfbd
...
...
@@ -16,6 +16,9 @@ use yii\db\Transaction;
/**
* Schema is the class for retrieving metadata from a SQLite (2/3) database.
*
* @property string $transactionIsolationLevel The transaction isolation level to use for this transaction.
* This can be either [[Transaction::READ_UNCOMMITTED]] or [[Transaction::SERIALIZABLE]].
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
...
...
framework/helpers/BaseConsole.php
View file @
6578cfbd
...
...
@@ -380,8 +380,6 @@ class BaseConsole
self
::
CROSSED_OUT
=>
[
'text-decoration'
=>
[
'line-through'
]],
self
::
BLINK
=>
[
'text-decoration'
=>
[
'blink'
]],
self
::
CONCEALED
=>
[
'visibility'
=>
'hidden'
],
// self::ENCIRCLED:
// self::FRAMED:
]
+
$styleMap
;
$tags
=
0
;
...
...
framework/mutex/Mutex.php
View file @
6578cfbd
No preview for this file type
framework/web/Request.php
View file @
6578cfbd
...
...
@@ -42,6 +42,7 @@ use yii\helpers\StringHelper;
* @property string $csrfToken The token used to perform CSRF validation. This property is read-only.
* @property string $csrfTokenFromHeader The CSRF token sent via [[CSRF_HEADER]] by browser. Null is returned
* if no such header is sent. This property is read-only.
* @property array $eTags The entity tags. This property is read-only.
* @property HeaderCollection $headers The header collection. This property is read-only.
* @property string $hostInfo Schema and hostname part (with port number if needed) of the request URL (e.g.
* `http://www.yiiframework.com`).
...
...
framework/widgets/MaskedInput.php
View file @
6578cfbd
...
...
@@ -50,7 +50,7 @@ class MaskedInput extends InputWidget
* - `9`: represents a numeric character (0-9)
* - `*`: represents an alphanumeric character (A-Z, a-z, 0-9)
* - `[` and `]`: anything entered between the square brackets is considered optional user input. This is
*
based on the `optionalmarker` setting in [[clientOptions]].
* based on the `optionalmarker` setting in [[clientOptions]].
*
* Additional definitions can be set through the [[definitions]] property.
*/
...
...
framework/widgets/MaskedInputAsset.php
View file @
6578cfbd
...
...
@@ -13,7 +13,7 @@ use yii\web\AssetBundle;
* The asset bundle for the [[MaskedInput]] widget.
*
* Includes client assets of [jQuery input mask plugin](https://github.com/RobinHerbots/jquery.inputmask).
*
*
* @author Kartik Visweswaran <kartikv2@gmail.com>
* @since 2.0
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment