PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
maatwebsite
/
excel
/
src
<?php namespace Maatwebsite\Excel; use PhpOffice\PhpSpreadsheet\Cell\Cell; use PhpOffice\PhpSpreadsheet\Cell\DefaultValueBinder as PhpSpreadsheetDefaultValueBinder; class DefaultValueBinder extends PhpSpreadsheetDefaultValueBinder { /** * @param Cell $cell Cell to bind value to * @param mixed $value Value to bind in cell * * @return bool */ public function bindValue(Cell $cell, $value) { if (is_array($value)) { $value = \json_encode($value); } return parent::bindValue($cell, $value); } }
[+]
Exceptions
[-] Reader.php
[edit]
[+]
Jobs
[-] DefaultValueBinder.php
[edit]
[+]
Cache
[+]
Factories
[-] Sheet.php
[edit]
[+]
Files
[+]
..
[-] HeadingRowImport.php
[edit]
[-] RegistersCustomConcerns.php
[edit]
[-] Exporter.php
[edit]
[-] DelegatedMacroable.php
[edit]
[+]
Filters
[-] Row.php
[edit]
[-] Importer.php
[edit]
[+]
Events
[+]
Validators
[-] SettingsProvider.php
[edit]
[+]
Transactions
[-] Writer.php
[edit]
[+]
Helpers
[-] MappedReader.php
[edit]
[-] ChunkReader.php
[edit]
[-] HasEventBus.php
[edit]
[-] ExcelServiceProvider.php
[edit]
[+]
Facades
[+]
Console
[+]
Imports
[-] Excel.php
[edit]
[-] QueuedWriter.php
[edit]
[+]
Concerns
[+]
Mixins
[+]
Fakes
[-] Cell.php
[edit]