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
2e892c42
Commit
2e892c42
authored
Apr 30, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added docs about build automation tool
fixes #2852
parent
d239029d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
automation.md
docs/internals/automation.md
+15
-0
classes.php
framework/classes.php
+1
-0
No files found.
docs/internals/automation.md
0 → 100644
View file @
2e892c42
Automation
==========
There are some tasks that are done automatically when working on Yii:
-
Generation of the classmap
`classes.php`
located under the framework root directory.
Run
`./build/build classmap`
to generate it.
-
Generation of the
`@property`
annotations in class files that describe properties introduced by getters and setters.
Run
`./build/build php-doc/property`
to update them.
-
Fixing of code style and other minor issues in phpdoc comments.
Run
`./build/build php-doc/fix`
to run the command.
Check the changes before you commit them as there may be unwanted changes because the command is not perfect.
You may use
`git add -p`
to review the changes.
framework/classes.php
View file @
2e892c42
...
@@ -200,6 +200,7 @@ return [
...
@@ -200,6 +200,7 @@ return [
'yii\rbac\Item'
=>
YII_PATH
.
'/rbac/Item.php'
,
'yii\rbac\Item'
=>
YII_PATH
.
'/rbac/Item.php'
,
'yii\rbac\ManagerInterface'
=>
YII_PATH
.
'/rbac/ManagerInterface.php'
,
'yii\rbac\ManagerInterface'
=>
YII_PATH
.
'/rbac/ManagerInterface.php'
,
'yii\rbac\Permission'
=>
YII_PATH
.
'/rbac/Permission.php'
,
'yii\rbac\Permission'
=>
YII_PATH
.
'/rbac/Permission.php'
,
'yii\rbac\PhpManager'
=>
YII_PATH
.
'/rbac/PhpManager.php'
,
'yii\rbac\Role'
=>
YII_PATH
.
'/rbac/Role.php'
,
'yii\rbac\Role'
=>
YII_PATH
.
'/rbac/Role.php'
,
'yii\rbac\Rule'
=>
YII_PATH
.
'/rbac/Rule.php'
,
'yii\rbac\Rule'
=>
YII_PATH
.
'/rbac/Rule.php'
,
'yii\requirements\YiiRequirementChecker'
=>
YII_PATH
.
'/requirements/YiiRequirementChecker.php'
,
'yii\requirements\YiiRequirementChecker'
=>
YII_PATH
.
'/requirements/YiiRequirementChecker.php'
,
...
...
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