Methods summary
	
		| 
			 public static
			float
			
			 | 
		#
		Timer( string $name = NULL )
			
		 
			
				ParametersReturns
					floatElapsed seconds.
 Inheritdocs
				 | 
	
		| 
			 public static
			mixed
			
			 | 
		#
		Dump( mixed $value, boolean $return = FALSE, boolean $exit = FALSE )
			
		 
			
				Parameters
					$valueVariable to dump.$returnLet's return output instead of printing it.$exitTRUEfor last dump call byxxx();method
                            to dump andexit;.
Returns
					mixedVariable itself or dumped variable string.
 Inheritdocs
				 | 
	
		| 
			 public static
			mixed
			
			 | 
		#
		BarDump( mixed $value, string $title = NULL, array $options = [] )
			
		 
			
				Parameters
					$valueVariable to dump.$titleOptional title.$optionsDumper options.Returns
					mixedVariable itself.
 Inheritdocs
				 | 
	
		| 
			 public static
			string
			
			 | 
		#
		Log( mixed|Exception|Throwable$value, string $priority = \MvcCore\IDebug::INFO )
			
		 
			
				ParametersReturns
					stringLogging filename full path.
 Inheritdocs
				 | 
	
		| 
			 public static
			
			
			 |  | 
	
		| 
			 public static
			
			
			 |  | 
	
		| 
			 protected static
			float
			
			 | 
		#
		timerHandler( string $name = NULL )
			Starts/stops stopwatch. ParametersReturns
					floatElapsed seconds.
 | 
	
		| 
			 protected static
			string
			
			 | 
		#
		dumpHandler( mixed $value, string $title = NULL, array $options = [] )
			Dump any variable as string with output buffering and return dumped string.
If given $optionsarray contains record aboutbarboolean - to render
dumped string in debug bar - store the dump record for HTML response later
rendering in shutdown handler or render dumped string directly in HTTP
header for AJAX response, before any output body. 
			Dump any variable as string with output buffering and return dumped string.
If given $optionsarray contains record aboutbarboolean - to render
dumped string in debug bar - store the dump record for HTML response later
rendering in shutdown handler or render dumped string directly in HTTP
header for AJAX response, before any output body. Parameters
					$valueVariable to dump.$titleOptional title.$optionsDumper options.Returns
					string
				 | 
	
		| 
			 protected static
			string
			
			 | 
		#
		storeLogRecord( mixed $value, string $priority )
			Store given log record in text file.
Return full path where the message has been written. 
			Store given log record in text file.
Return full path where the message has been written. ParametersReturns
					string
				 | 
	
		| 
			 protected static
			array
			
			 | 
		#
		formatDebugDumps( )
			Format all dump records into single string with source PHP script file
link element and remove all useless new lines in PHP dumps. 
			Format all dump records into single string with source PHP script file
link element and remove all useless new lines in PHP dumps. Returns
					arrayAn array with formatted dumps string and boolean about last dump before script exit.
 | 
	
		| 
			 protected static
			array
			
			 | 
		#
		formatDebugDump( array $dumpRecord, string|null $appRoot = NULL )
			Format one dump record into single string with source PHP script file
link element and remove all useless new lines in PHP dumps. 
			Format one dump record into single string with source PHP script file
link element and remove all useless new lines in PHP dumps. Parameters
					$dumpRecordDump record from self::$dumpswith items under indexes:0=> dump string,1=> title,2=> options.$appRootReturns
					arrayAn array with formatted dump string and boolean about last dump before script exit.
 | 
	
	
		| 
			 protected static
			boolean
			
			 | 
		#
		isHtmlResponse( )
			Get TRUEif response is considered as HTML type. 
			Get TRUEif response is considered as HTML type. Returns
					boolean
				 |