@@ -71,7 +71,7 @@ method that suits you the best. Here are some examples:
7171``` php
7272
7373// MySQL-like timestamp '2008-12-31' or date string
74- \PhpOffice\PhpSpreadsheet\Cell::setValueBinder( new \PhpOffice\PhpSpreadsheet\Cell\AdvancedValueBinder() );
74+ \PhpOffice\PhpSpreadsheet\Cell\Cell ::setValueBinder( new \PhpOffice\PhpSpreadsheet\Cell\AdvancedValueBinder() );
7575
7676$spreadsheet->getActiveSheet()
7777 ->setCellValue('D1', '2008-12-31');
@@ -248,7 +248,7 @@ when it sees a newline character in a string that you are inserting in a
248248cell. Just like Microsoft Office Excel. Try this:
249249
250250``` php
251- \PhpOffice\PhpSpreadsheet\Cell::setValueBinder( new \PhpOffice\PhpSpreadsheet\Cell\AdvancedValueBinder() );
251+ \PhpOffice\PhpSpreadsheet\Cell\Cell ::setValueBinder( new \PhpOffice\PhpSpreadsheet\Cell\AdvancedValueBinder() );
252252
253253$spreadsheet->getActiveSheet()->getCell('A1')->setValue("hello\nworld");
254254```
@@ -743,13 +743,13 @@ easy manner.
743743### Valid array keys for style ` applyFromArray() `
744744
745745The following table lists the valid array keys for
746- \PhpOffice\PhpSpreadsheet\Style applyFromArray() classes. If the "Maps
746+ ` \PhpOffice\PhpSpreadsheet\Style\Style:: applyFromArray() ` classes. If the "Maps
747747to property" column maps a key to a setter, the value provided for that
748748key will be applied directly. If the "Maps to property" column maps a
749749key to a getter, the value provided for that key will be applied as
750750another style array.
751751
752- ** \PhpOffice\PhpSpreadsheet\Style**
752+ ** \PhpOffice\PhpSpreadsheet\Style\Style **
753753
754754Array key | Maps to property
755755-------------|-------------------
0 commit comments