Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
TypeBase.php
01 <?php
02
03 /**
04 * fast-image-size image type base
05 * @package fast-image-size
06 * @copyright (c) Marc Alexander <admin@m-a-styles.de>
07 *
08 * For the full copyright and license information, please view the LICENSE
09 * file that was distributed with this source code.
10 */
11
12 namespace FastImageSize\Type;
13
14 use \FastImageSize\FastImageSize;
15
16 abstract class TypeBase implements TypeInterface
17 {
18 /** @var FastImageSize */
19 protected $fastImageSize;
20
21 /**
22 * Base constructor for image types
23 *
24 * @param FastImageSize $fastImageSize
25 */
26 public function __construct(FastImageSize $fastImageSize)
27 {
28 $this->fastImageSize = $fastImageSize;
29 }
30 }
31