Skip to content

Commit cd28329

Browse files
authored
Update README.md
1 parent 5edf7b1 commit cd28329

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ composer require friendsofcake/cakephp-csvview
3333

3434
Load the plugin by running command
3535

36-
./bin/cake plugin load CsvView
36+
bin/cake plugin load CsvView
3737

3838
## Usage
3939

@@ -154,7 +154,7 @@ public function export()
154154
$_header = ['Post ID', 'Title', 'Created'];
155155
$_extract = [
156156
'id',
157-
function ($row) {
157+
function (\App\Model\Entity\Post $row) {
158158
return $row->title;
159159
},
160160
'created'

0 commit comments

Comments
 (0)