This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This file is part of the Nette Framework (https://nette.org) | |
* Copyright (c) 2004 David Grudl (https://davidgrudl.com) | |
*/ | |
declare(strict_types=1); | |
namespace Nette\Mail; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Holabs\Utils; | |
use Nette\InvalidArgumentException; | |
use Nette\Utils\Strings; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Nette\Application\UI\Control; | |
class FooControl extends Control { | |
/** @var SomeDependecy */ | |
private $depend; | |
public function (SomeDependecy $depend) { | |
$this->depend = $depend; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$countries = array( | |
"AT" => "Rakousko", | |
"BE" => "Belgie", | |
"BG" => "Bulharsko", | |
"CY" => "Kypr", | |
"CZ" => "Česká republika", | |
"DK" => "Dánsko", | |
"EE" => "Estonsko", | |
"FI" => "Finsko", |