Skip to content

Commit

Permalink
rename class names
Browse files Browse the repository at this point in the history
  • Loading branch information
frostealth committed Jun 10, 2015
1 parent a92f197 commit 96971ad
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.gitattributes export-ignore
.gitignore export-ignore
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ thumbs.db
.settings
.idea
composer.phar
composer.lock
vendor/*
4 changes: 2 additions & 2 deletions src/Create.php → src/CreateAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
use yii\db\ActiveRecord;

/**
* Class Create
* Class CreateAction
*
* @package strong_squirrel\actions
*/
class Create extends Action
class CreateAction extends Action
{
/**
* @var string the scenario to be assigned to the new model before it is validated and saved.
Expand Down
4 changes: 2 additions & 2 deletions src/Delete.php → src/DeleteAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
use yii\web\ServerErrorHttpException;

/**
* Class Delete
* Class DeleteAction
*
* @package strong_squirrel\actions
*/
class Delete extends Action
class DeleteAction extends Action
{
/**
* @var callable
Expand Down
4 changes: 2 additions & 2 deletions src/Index.php → src/IndexAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
use yii\data\ActiveDataProvider;

/**
* Class Index
* Class IndexAction
*
* @package strong_squirrel\actions
*/
class Index extends Action
class IndexAction extends Action
{
/**
* @var string the name of the view action.
Expand Down
4 changes: 2 additions & 2 deletions src/Update.php → src/UpdateAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
use yii\db\ActiveRecord;

/**
* Class Update
* Class UpdateAction
*
* @package strong_squirrel\actions
*/
class Update extends Action
class UpdateAction extends Action
{
/**
* @var string the scenario to be assigned to the new model before it is validated and saved.
Expand Down
4 changes: 2 additions & 2 deletions src/View.php → src/ViewAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace strong_squirrel\actions;

/**
* Class View
* Class ViewAction
*
* @package strong_squirrel\actions
*/
class View extends Action
class ViewAction extends Action
{
/**
* @var string the name of the view action.
Expand Down

0 comments on commit 96971ad

Please sign in to comment.