We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5edf7b1 commit cd28329Copy full SHA for cd28329
1 file changed
README.md
@@ -33,7 +33,7 @@ composer require friendsofcake/cakephp-csvview
33
34
Load the plugin by running command
35
36
- ./bin/cake plugin load CsvView
+ bin/cake plugin load CsvView
37
38
## Usage
39
@@ -154,7 +154,7 @@ public function export()
154
$_header = ['Post ID', 'Title', 'Created'];
155
$_extract = [
156
'id',
157
- function ($row) {
+ function (\App\Model\Entity\Post $row) {
158
return $row->title;
159
},
160
'created'
0 commit comments