8000 Custom voter example, fix missing curly brace by snroki · Pull Request #5523 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

Custom voter example, fix missing curly brace #5523

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

Closed
wants to merge 1 commit into from
Closed
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
Custom voter example, fix missing curly brace
| Q             | A
| ------------- | ---
| Doc fix?      | yes
| New docs?     | no
| Applies to    | 2.6 / 2.7 / 3.0
| Fixed tickets |
  • Loading branch information
snroki committed Jul 15, 2015
commit 4e5a90d613caec57486bc7507d817763c26e975d
3 changes: 2 additions & 1 deletion cookbook/security/voters_data_permission.rst
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ edit a particular object. Here's an example implementation:
}

break;

}

return false;
}
}
Expand Down
0