diff --git a/extensions/composer/Installer.php b/extensions/composer/Installer.php index 164392e..d8d799f 100644 --- a/extensions/composer/Installer.php +++ b/extensions/composer/Installer.php @@ -26,7 +26,7 @@ class Installer extends LibraryInstaller const EXTENSION_FILE = 'yiisoft/extensions.php'; /** - * {@inheritdoc} + * @inheritdoc */ public function supports($packageType) { @@ -34,7 +34,7 @@ class Installer extends LibraryInstaller } /** - * {@inheritdoc} + * @inheritdoc */ public function install(InstalledRepositoryInterface $repo, PackageInterface $package) { @@ -49,7 +49,7 @@ class Installer extends LibraryInstaller } /** - * {@inheritdoc} + * @inheritdoc */ public function update(InstalledRepositoryInterface $repo, PackageInterface $initial, PackageInterface $target) { @@ -63,7 +63,7 @@ class Installer extends LibraryInstaller } /** - * {@inheritdoc} + * @inheritdoc */ public function uninstall(InstalledRepositoryInterface $repo, PackageInterface $package) { diff --git a/extensions/composer/Plugin.php b/extensions/composer/Plugin.php index 40bd8e5..1111738 100644 --- a/extensions/composer/Plugin.php +++ b/extensions/composer/Plugin.php @@ -20,7 +20,7 @@ use Composer\Plugin\PluginInterface; class Plugin implements PluginInterface { /** - * {@inheritdoc} + * @inheritdoc */ public function activate(Composer $composer, IOInterface $io) { diff --git a/extensions/elasticsearch/ActiveQuery.php b/extensions/elasticsearch/ActiveQuery.php index b444f05..96d6681 100644 --- a/extensions/elasticsearch/ActiveQuery.php +++ b/extensions/elasticsearch/ActiveQuery.php @@ -139,7 +139,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface } /** - * {@inheritdoc} + * @inheritdoc */ public function search($db = null, $options = []) { @@ -161,7 +161,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface } /** - * {@inheritdoc} + * @inheritdoc */ public function scalar($field, $db = null) { @@ -177,7 +177,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface } /** - * {@inheritdoc} + * @inheritdoc */ public function column($field, $db = null) { diff --git a/extensions/elasticsearch/ActiveRecord.php b/extensions/elasticsearch/ActiveRecord.php index efdb5fe..b04e67d 100644 --- a/extensions/elasticsearch/ActiveRecord.php +++ b/extensions/elasticsearch/ActiveRecord.php @@ -61,7 +61,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function find($q = null) { @@ -138,7 +138,7 @@ class ActiveRecord extends \yii\db\ActiveRecord // TODO add percolate functionality http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-percolate.html /** - * {@inheritdoc} + * @inheritdoc */ public static function createQuery() { @@ -146,7 +146,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function createActiveRelation($config = []) { @@ -175,7 +175,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public function getPrimaryKey($asArray = false) { @@ -187,7 +187,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public function getOldPrimaryKey($asArray = false) { @@ -430,7 +430,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function updateAllCounters($counters, $condition = null, $params = []) { @@ -438,7 +438,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function getTableSchema() { @@ -446,7 +446,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function tableName() { @@ -454,7 +454,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function findBySql($sql, $params = []) { diff --git a/extensions/gii/Generator.php b/extensions/gii/Generator.php index 53e54bb..05c45a7 100644 --- a/extensions/gii/Generator.php +++ b/extensions/gii/Generator.php @@ -63,7 +63,7 @@ abstract class Generator extends Model abstract public function generate(); /** - * {@inheritdoc} + * @inheritdoc */ public function init() { @@ -164,7 +164,7 @@ abstract class Generator extends Model } /** - * {@inheritdoc} + * @inheritdoc * * Child classes should override this method like the following so that the parent * rules are included: diff --git a/extensions/gii/GiiAsset.php b/extensions/gii/GiiAsset.php index 64dc62b..b100750 100644 --- a/extensions/gii/GiiAsset.php +++ b/extensions/gii/GiiAsset.php @@ -18,25 +18,25 @@ use yii\web\AssetBundle; class GiiAsset extends AssetBundle { /** - * {@inheritdoc} + * @inheritdoc */ public $sourcePath = '@yii/gii/assets'; /** - * {@inheritdoc} + * @inheritdoc */ public $css = [ 'main.css', 'typeahead.js-bootstrap.css', ]; /** - * {@inheritdoc} + * @inheritdoc */ public $js = [ 'gii.js', 'typeahead.js', ]; /** - * {@inheritdoc} + * @inheritdoc */ public $depends = [ 'yii\web\YiiAsset', diff --git a/extensions/gii/Module.php b/extensions/gii/Module.php index 5644e29..7dc9590 100644 --- a/extensions/gii/Module.php +++ b/extensions/gii/Module.php @@ -54,7 +54,7 @@ use yii\web\HttpException; class Module extends \yii\base\Module { /** - * {@inheritdoc} + * @inheritdoc */ public $controllerNamespace = 'yii\gii\controllers'; /** @@ -92,7 +92,7 @@ class Module extends \yii\base\Module /** - * {@inheritdoc} + * @inheritdoc */ public function init() { @@ -103,7 +103,7 @@ class Module extends \yii\base\Module } /** - * {@inheritdoc} + * @inheritdoc */ public function beforeAction($action) { diff --git a/extensions/gii/generators/controller/Generator.php b/extensions/gii/generators/controller/Generator.php index 769db0a..08b29d5 100644 --- a/extensions/gii/generators/controller/Generator.php +++ b/extensions/gii/generators/controller/Generator.php @@ -38,7 +38,7 @@ class Generator extends \yii\gii\Generator public $actions = 'index'; /** - * {@inheritdoc} + * @inheritdoc */ public function init() { @@ -47,7 +47,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function getName() { @@ -55,7 +55,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function getDescription() { @@ -64,7 +64,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function rules() { @@ -79,7 +79,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function attributeLabels() { @@ -92,7 +92,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function requiredTemplates() { @@ -103,7 +103,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function stickyAttributes() { @@ -111,7 +111,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function hints() { @@ -134,7 +134,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function successMessage() { @@ -149,7 +149,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function generate() { diff --git a/extensions/gii/generators/crud/Generator.php b/extensions/gii/generators/crud/Generator.php index 107c8f2..1925de2 100644 --- a/extensions/gii/generators/crud/Generator.php +++ b/extensions/gii/generators/crud/Generator.php @@ -69,7 +69,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function hints() { @@ -95,7 +95,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function stickyAttributes() { @@ -123,7 +123,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function generate() { diff --git a/extensions/gii/generators/crud/templates/search.php b/extensions/gii/generators/crud/templates/search.php index 17a0024..1411896 100644 --- a/extensions/gii/generators/crud/templates/search.php +++ b/extensions/gii/generators/crud/templates/search.php @@ -40,7 +40,7 @@ class extends Model } /** - * {@inheritdoc} + * @inheritdoc */ public function attributeLabels() { diff --git a/extensions/gii/generators/form/Generator.php b/extensions/gii/generators/form/Generator.php index cc4328e..3bc0be6 100644 --- a/extensions/gii/generators/form/Generator.php +++ b/extensions/gii/generators/form/Generator.php @@ -26,7 +26,7 @@ class Generator extends \yii\gii\Generator /** - * {@inheritdoc} + * @inheritdoc */ public function getName() { @@ -34,7 +34,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function getDescription() { @@ -42,7 +42,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function generate() { @@ -55,7 +55,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function rules() { @@ -72,7 +72,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function attributeLabels() { @@ -85,7 +85,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function requiredTemplates() { @@ -93,7 +93,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function stickyAttributes() { @@ -101,7 +101,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function hints() { @@ -114,7 +114,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function successMessage() { diff --git a/extensions/gii/generators/model/Generator.php b/extensions/gii/generators/model/Generator.php index 8c505f1..cd2fcbf 100644 --- a/extensions/gii/generators/model/Generator.php +++ b/extensions/gii/generators/model/Generator.php @@ -32,7 +32,7 @@ class Generator extends \yii\gii\Generator /** - * {@inheritdoc} + * @inheritdoc */ public function getName() { @@ -40,7 +40,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function getDescription() { @@ -48,7 +48,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function rules() { @@ -68,7 +68,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function attributeLabels() { @@ -84,7 +84,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function hints() { @@ -111,7 +111,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function autoCompleteData() { @@ -128,7 +128,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function requiredTemplates() { @@ -136,7 +136,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function stickyAttributes() { @@ -144,7 +144,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function generate() { diff --git a/extensions/gii/generators/model/templates/model.php b/extensions/gii/generators/model/templates/model.php index 555bee1..dcd1461 100644 --- a/extensions/gii/generators/model/templates/model.php +++ b/extensions/gii/generators/model/templates/model.php @@ -33,7 +33,7 @@ namespace ns ?>; class extends baseClass, '\\') . "\n" ?> { /** - * {@inheritdoc} + * @inheritdoc */ public static function tableName() { @@ -41,7 +41,7 @@ class extends baseClass, '\\') . } /** - * {@inheritdoc} + * @inheritdoc */ public function rules() { @@ -49,7 +49,7 @@ class extends baseClass, '\\') . } /** - * {@inheritdoc} + * @inheritdoc */ public function attributeLabels() { diff --git a/extensions/gii/generators/module/Generator.php b/extensions/gii/generators/module/Generator.php index a29555b..5946e07 100644 --- a/extensions/gii/generators/module/Generator.php +++ b/extensions/gii/generators/module/Generator.php @@ -24,7 +24,7 @@ class Generator extends \yii\gii\Generator public $moduleID; /** - * {@inheritdoc} + * @inheritdoc */ public function getName() { @@ -32,7 +32,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function getDescription() { @@ -40,7 +40,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function rules() { @@ -54,7 +54,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function attributeLabels() { @@ -65,7 +65,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function hints() { @@ -76,7 +76,7 @@ class Generator extends \yii\gii\Generator } /** - * {@inheritdoc} + * @inheritdoc */ public function successMessage() { @@ -104,7 +104,7 @@ EOD; } /** - * {@inheritdoc} + * @inheritdoc */ public function requiredTemplates() { @@ -112,7 +112,7 @@ EOD; } /** - * {@inheritdoc} + * @inheritdoc */ public function generate() { diff --git a/extensions/redis/ActiveRecord.php b/extensions/redis/ActiveRecord.php index 8c2933c..1239a6c 100644 --- a/extensions/redis/ActiveRecord.php +++ b/extensions/redis/ActiveRecord.php @@ -48,7 +48,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function createQuery() { @@ -56,7 +56,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function createActiveRelation($config = []) { @@ -87,7 +87,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public function insert($runValidation = true, $attributes = null) { @@ -294,7 +294,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function getTableSchema() { @@ -302,7 +302,7 @@ class ActiveRecord extends \yii\db\ActiveRecord } /** - * {@inheritdoc} + * @inheritdoc */ public static function findBySql($sql, $params = []) { diff --git a/extensions/redis/Cache.php b/extensions/redis/Cache.php index 627acdc..0722b9d 100644 --- a/extensions/redis/Cache.php +++ b/extensions/redis/Cache.php @@ -105,7 +105,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function getValue($key) { @@ -113,7 +113,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function getValues($keys) { @@ -127,7 +127,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function setValue($key, $value, $expire) { @@ -140,7 +140,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function setValues($data, $expire) { @@ -174,7 +174,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function addValue($key, $value, $expire) { @@ -187,7 +187,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function deleteValue($key) { @@ -195,7 +195,7 @@ class Cache extends \yii\caching\Cache } /** - * {@inheritdoc} + * @inheritdoc */ protected function flushValues() { diff --git a/extensions/sphinx/ActiveQuery.php b/extensions/sphinx/ActiveQuery.php index 7ba48d2..3533c35 100644 --- a/extensions/sphinx/ActiveQuery.php +++ b/extensions/sphinx/ActiveQuery.php @@ -176,7 +176,7 @@ class ActiveQuery extends Query implements ActiveQueryInterface } /** - * {@inheritdoc} + * @inheritdoc */ protected function defaultConnection() { @@ -201,4 +201,4 @@ class ActiveQuery extends Query implements ActiveQueryInterface } return $result; } -} \ No newline at end of file +} diff --git a/extensions/sphinx/Command.php b/extensions/sphinx/Command.php index a6c8c4f..ba802f5 100644 --- a/extensions/sphinx/Command.php +++ b/extensions/sphinx/Command.php @@ -197,7 +197,7 @@ class Command extends \yii\db\Command // Not Supported : /** - * {@inheritdoc} + * @inheritdoc */ public function createTable($table, $columns, $options = null) { @@ -205,7 +205,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function renameTable($table, $newName) { @@ -213,7 +213,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function dropTable($table) { @@ -221,7 +221,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function truncateTable($table) { @@ -229,7 +229,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function addColumn($table, $column, $type) { @@ -237,7 +237,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function dropColumn($table, $column) { @@ -245,7 +245,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function renameColumn($table, $oldName, $newName) { @@ -253,7 +253,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function alterColumn($table, $column, $type) { @@ -261,7 +261,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function addPrimaryKey($name, $table, $columns) { @@ -269,7 +269,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function dropPrimaryKey($name, $table) { @@ -277,7 +277,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function addForeignKey($name, $table, $columns, $refTable, $refColumns, $delete = null, $update = null) { @@ -285,7 +285,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function dropForeignKey($name, $table) { @@ -293,7 +293,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function createIndex($name, $table, $columns, $unique = false) { @@ -301,7 +301,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function dropIndex($name, $table) { @@ -309,7 +309,7 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function resetSequence($table, $value = null) { @@ -317,10 +317,10 @@ class Command extends \yii\db\Command } /** - * {@inheritdoc} + * @inheritdoc */ public function checkIntegrity($check = true, $schema = '') { throw new NotSupportedException('"' . __METHOD__ . '" is not supported.'); } -} \ No newline at end of file +} diff --git a/extensions/sphinx/Connection.php b/extensions/sphinx/Connection.php index a3492bb..b6519d3 100644 --- a/extensions/sphinx/Connection.php +++ b/extensions/sphinx/Connection.php @@ -62,7 +62,7 @@ use yii\base\NotSupportedException; class Connection extends \yii\db\Connection { /** - * {@inheritdoc} + * @inheritdoc */ public $schemaMap = [ 'mysqli' => 'yii\sphinx\Schema', // MySQL @@ -129,4 +129,4 @@ class Connection extends \yii\db\Connection { throw new NotSupportedException('"' . __METHOD__ . '" is not supported.'); } -} \ No newline at end of file +} diff --git a/extensions/swiftmailer/Mailer.php b/extensions/swiftmailer/Mailer.php index aab8434..891f2b5 100644 --- a/extensions/swiftmailer/Mailer.php +++ b/extensions/swiftmailer/Mailer.php @@ -123,7 +123,7 @@ class Mailer extends BaseMailer } /** - * {@inheritdoc} + * @inheritdoc */ protected function sendMessage($message) { diff --git a/extensions/swiftmailer/Message.php b/extensions/swiftmailer/Message.php index f7d8b34..9558d58 100644 --- a/extensions/swiftmailer/Message.php +++ b/extensions/swiftmailer/Message.php @@ -41,7 +41,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getCharset() { @@ -49,7 +49,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setCharset($charset) { @@ -58,7 +58,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getFrom() { @@ -66,7 +66,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setFrom($from) { @@ -75,7 +75,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getReplyTo() { @@ -83,7 +83,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setReplyTo($replyTo) { @@ -92,7 +92,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getTo() { @@ -100,7 +100,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setTo($to) { @@ -109,7 +109,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getCc() { @@ -117,7 +117,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setCc($cc) { @@ -126,7 +126,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getBcc() { @@ -134,7 +134,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setBcc($bcc) { @@ -143,7 +143,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function getSubject() { @@ -151,7 +151,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setSubject($subject) { @@ -160,7 +160,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setTextBody($text) { @@ -169,7 +169,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function setHtmlBody($html) { @@ -222,7 +222,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function attach($fileName, array $options = []) { @@ -238,7 +238,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function attachContent($content, array $options = []) { @@ -254,7 +254,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function embed($fileName, array $options = []) { @@ -269,7 +269,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function embedContent($content, array $options = []) { @@ -284,7 +284,7 @@ class Message extends BaseMessage } /** - * {@inheritdoc} + * @inheritdoc */ public function toString() { diff --git a/framework/yii/base/Application.php b/framework/yii/base/Application.php index 48b526c..756d4e2 100644 --- a/framework/yii/base/Application.php +++ b/framework/yii/base/Application.php @@ -199,7 +199,7 @@ abstract class Application extends Module } /** - * {@inheritdoc} + * @inheritdoc */ public function init() { diff --git a/framework/yii/data/ActiveDataProvider.php b/framework/yii/data/ActiveDataProvider.php index 6625bf5..8c69230 100644 --- a/framework/yii/data/ActiveDataProvider.php +++ b/framework/yii/data/ActiveDataProvider.php @@ -93,7 +93,7 @@ class ActiveDataProvider extends BaseDataProvider } /** - * {@inheritdoc} + * @inheritdoc */ protected function prepareModels() { @@ -111,7 +111,7 @@ class ActiveDataProvider extends BaseDataProvider } /** - * {@inheritdoc} + * @inheritdoc */ protected function prepareKeys($models) { @@ -150,7 +150,7 @@ class ActiveDataProvider extends BaseDataProvider } /** - * {@inheritdoc} + * @inheritdoc */ protected function prepareTotalCount() { @@ -162,7 +162,7 @@ class ActiveDataProvider extends BaseDataProvider } /** - * {@inheritdoc} + * @inheritdoc */ public function setSort($value) { diff --git a/framework/yii/data/ArrayDataProvider.php b/framework/yii/data/ArrayDataProvider.php index 987e364..2b694c7 100644 --- a/framework/yii/data/ArrayDataProvider.php +++ b/framework/yii/data/ArrayDataProvider.php @@ -66,7 +66,7 @@ class ArrayDataProvider extends BaseDataProvider /** - * {@inheritdoc} + * @inheritdoc */ protected function prepareModels() { @@ -87,7 +87,7 @@ class ArrayDataProvider extends BaseDataProvider } /** - * {@inheritdoc} + * @inheritdoc */ protected function prepareKeys($models) { @@ -107,7 +107,7 @@ class ArrayDataProvider extends BaseDataProvider } /** - * {@inheritdoc} + * @inheritdoc */ protected function prepareTotalCount() { diff --git a/framework/yii/db/cubrid/QueryBuilder.php b/framework/yii/db/cubrid/QueryBuilder.php index 45bd4a2..9acf91f 100644 --- a/framework/yii/db/cubrid/QueryBuilder.php +++ b/framework/yii/db/cubrid/QueryBuilder.php @@ -69,7 +69,7 @@ class QueryBuilder extends \yii\db\QueryBuilder } /** - * {@inheritdoc} + * @inheritdoc */ public function buildLimit($limit, $offset) { diff --git a/framework/yii/db/mysql/QueryBuilder.php b/framework/yii/db/mysql/QueryBuilder.php index 9cb321f..e9481a4 100644 --- a/framework/yii/db/mysql/QueryBuilder.php +++ b/framework/yii/db/mysql/QueryBuilder.php @@ -142,7 +142,7 @@ class QueryBuilder extends \yii\db\QueryBuilder } /** - * {@inheritdoc} + * @inheritdoc */ public function buildLimit($limit, $offset) { diff --git a/framework/yii/db/sqlite/QueryBuilder.php b/framework/yii/db/sqlite/QueryBuilder.php index ae049e7..bddc436 100644 --- a/framework/yii/db/sqlite/QueryBuilder.php +++ b/framework/yii/db/sqlite/QueryBuilder.php @@ -255,7 +255,7 @@ class QueryBuilder extends \yii\db\QueryBuilder } /** - * {@inheritdoc} + * @inheritdoc */ public function buildLimit($limit, $offset) { diff --git a/framework/yii/mail/BaseMessage.php b/framework/yii/mail/BaseMessage.php index f95b4fb..c23f96a 100644 --- a/framework/yii/mail/BaseMessage.php +++ b/framework/yii/mail/BaseMessage.php @@ -26,7 +26,7 @@ use Yii; abstract class BaseMessage extends Object implements MessageInterface { /** - * {@inheritdoc} + * @inheritdoc */ public function send(MailerInterface $mailer = null) { diff --git a/framework/yii/validators/SafeValidator.php b/framework/yii/validators/SafeValidator.php index 7cdc0a1..25da899 100644 --- a/framework/yii/validators/SafeValidator.php +++ b/framework/yii/validators/SafeValidator.php @@ -16,7 +16,7 @@ namespace yii\validators; class SafeValidator extends Validator { /** - * {@inheritdoc} + * @inheritdoc */ public function validateAttribute($object, $attribute) { diff --git a/framework/yii/validators/Validator.php b/framework/yii/validators/Validator.php index f0602b6..2cd611b 100644 --- a/framework/yii/validators/Validator.php +++ b/framework/yii/validators/Validator.php @@ -159,7 +159,7 @@ abstract class Validator extends Component } /** - * {@inheritdoc} + * @inheritdoc */ public function init() { diff --git a/framework/yii/web/Controller.php b/framework/yii/web/Controller.php index 1424d0c..e01a924 100644 --- a/framework/yii/web/Controller.php +++ b/framework/yii/web/Controller.php @@ -86,7 +86,7 @@ class Controller extends \yii\base\Controller } /** - * {@inheritdoc} + * @inheritdoc */ public function beforeAction($action) {