Skip to content

Commit

Permalink
Whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Jul 20, 2022
1 parent b5942e3 commit c5a2c19
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/display-example/display-example.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
Expand All @@ -22,7 +22,7 @@
*
*/

require_once "../tutorial/tutorial_autoload.php";
require 'vendor/autoload.php';

$set = new ezcMailFileSet( array( $argv[1] ) );
$parser = new ezcMailParser();
Expand Down Expand Up @@ -181,6 +181,6 @@ function formatAddress( $address )
{
$name = "{$address->name} ";
}
return $name . "<{$address->email}>";
return $name . "<{$address->email}>";
}
?>

0 comments on commit c5a2c19

Please sign in to comment.