<?php

/**
 * @param int    $var    Description.
 * @param string $string Another description.
 */

			$expected = ( $column - 1 );
			$found    = ( $this->tokens[ $closer ]['column'] - 1 );
			$error    = 'Array closer not aligned correctly; expected %s space(s) but found %s';
			$data     = array(
				$expected_value => 'data',
				$found          => 'more_data',
			);

/**
 * @param int	 $var	 Description - Bad: alignment using tabs.
 * @param string $string Another description.
 */

			$expected = ( $column - 1 );
			$found	  = ( $this->tokens[ $closer ]['column'] - 1 ); // Bad.
			$error	  = 'Array closer not aligned correctly; expected %s space(s) but found %s'; // Bad.
			$data	  = array( // Bad.
				$expected_value => 'data',
				$found			=> 'more_data', // Bad.
			);

/*
 * Test that the tab replacements do not negatively influence the existing mid-line alignments.
 */
$a		  = true;
$aa		  = true;
$aaa	  = true;
$aaaa	  = true;
$aaaaa	  = true;
$aaaaaa	  = true;
$aaaaaaa  = true;
$aaaaaaaa = true;
