Where to find the description of classes yii2 in Russian?
The site yiiframework.com has api 2.0. If specifically, here: http://www.yiiframework.com/doc-2.0/
Is there an analogue in Russian?
Where to find the description of classes yii2 in Russian?
The site yiiframework.com has api 2.0. If specifically, here: http://www.yiiframework.com/doc-2.0/
Is there an analogue in Russian?
I think this does not exist.
API documentation, usually generated automatically from comments in the code.
One tool for this is the phpDocumentor http://www.phpdoc.org .
Since all the code is commented out in English, the generated result is in English.
The guide is translated, as it does not change often, but the API does not. It will need to be translated / rechecked after each commit, which is unrealistic.
PS: Guide - http://github.com/yiisoft/yii2/tree/master/docs/guide-ru
Source: https://ru.stackoverflow.com/questions/574242/
All Articles