Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md, fixing classname in namespace #9

Merged
merged 1 commit into from
Apr 9, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To use this extension you can simply add it to the model's behaviours:
public function behaviors()
{
return [
'sammaye\audittrail\LoggableBehaviour'
'sammaye\audittrail\LoggableBehavior'
];
}
}
Expand All @@ -25,8 +25,8 @@ You can convert the entered behaviour into a key - value structure to define opt
public function behaviors()
{
return [
'LoggableBehaviour' => [
'class' => 'sammaye\audittrail\LoggableBehaviour',
'LoggableBehavior' => [
'class' => 'sammaye\audittrail\LoggableBehavior',
'ignored' => ['some_field'], // This ignores fields from a selection of all fields, not needed with allowed
'allowed' => ['another_field'] // optional, not needed if you use ignore
]
Expand Down