 554684720d
			
		
	
	
		554684720d
		
			
		
	
	
	
	
		
			
			* Merge branch 'master' of C:\Projects\PHPOffice\PHPSpreadsheet\develop with conflicts. * Adjusted logic for COUNT() function to handle differences in EXCEL, GNUMERIC and OPENOFFICE modes for cells and for literal values * Fix case-sensitivity in filenames * Appeasing Codesniffer * Resolve COUNTA() differences between cell values and literals * Style fixes * Start refactoring statistical function tests into individual tests rather than having a single, giant test for all statistical functions.... first step toward doing this for all tests * More refactoring into separate tests If all functions have their own individual test files, it should be a lot easier to identify which functions aren't covered by tests yet * Missing last lines in files
		
			
				
	
	
		
			37 lines
		
	
	
		
			807 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			807 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [
 | |
|         5,
 | |
|         [
 | |
|             // The index simulates a cell value
 | |
|             // Numbers and Booleans are both counted
 | |
|             '0.1.A' => 'A',
 | |
|             '0.2.A' => 1,
 | |
|             '0.3.A' => true,
 | |
|             '0.4.A' => 2.9,
 | |
|             '0.5.A' => false,
 | |
|             '0.6.A' => '3',
 | |
|             '0.7.A' => '',
 | |
|             '0.8.A' => null,
 | |
|             '0.9.A' => 9,
 | |
|         ],
 | |
|     ],
 | |
|     [
 | |
|         6,
 | |
|         [
 | |
|             // No index indicates arguments passed as literals rather than cell values
 | |
|             // In this case, booleans are counted as well as numbers, as are numeric-value string literals
 | |
|             'A',
 | |
|             1,
 | |
|             true,
 | |
|             2.9,
 | |
|             false,
 | |
|             '3',
 | |
|             '',
 | |
|             null,
 | |
|             9,
 | |
|         ],
 | |
|     ],
 | |
| ];
 |