git commit -a -m "Merged with local develop branch."
git tag -a v0.1.0 -m "version 0.1.0-stable"
git push origin --tags
| @ECHO OFF | |
| REM Removes the directories "System Volume Information" and "$RECYCLE.BIN" from | |
| REM the drive with the specified drive letter. | |
| REM | |
| REM Author: Florian Wolters <[email protected]> | |
| REM Link..: http://github.com/FlorianWolters | |
| REM | |
| REM Copyright (C) 2012 by Florian Wolters. All rights reserved. | |
| REM | |
| REM This program is free software: you can redistribute it and/or modify it |
| @ECHO OFF | |
| REM Prints out the last day of the current month. | |
| REM | |
| REM Author: Florian Wolters <[email protected]> | |
| REM Link..: http://github.com/FlorianWolters | |
| REM | |
| REM Copyright (C) 2012 by Florian Wolters. All rights reserved. | |
| REM | |
| REM This program is free software: you can redistribute it and/or modify it | |
| REM under the terms of the GNU Lesser General Public License as published by the |
| @ECHO OFF | |
| REM Prints out the last date of the last month in optional DIN 5008 format. | |
| REM | |
| REM The optional DIN 5008 format is "dd.mm.yyyy", e.g. "29.02.2012". | |
| REM | |
| REM Author: Florian Wolters <[email protected]> | |
| REM Link..: http://github.com/FlorianWolters | |
| REM | |
| REM Copyright (C) 2012 by Florian Wolters. All rights reserved. | |
| REM |
| package de.florianwolters.pattern.singleton; | |
| /** | |
| * Demonstration of the <i>Singleton</i> design pattern in Java. | |
| * | |
| * This is the correct implementation of the <i>Singleton</i> creational design | |
| * pattern in the Java programming language. | |
| * | |
| * - Thread-safe without special language constructs (e.g. | |
| * <tt>synchronized</tt> or <tt>volatile</tt>). |
| # apigen.neon | |
| # | |
| # Neon configuration file for the documentation generator "ApiGen". | |
| # | |
| # This program is free software: you can redistribute it and/or modify it under | |
| # the terms of the GNU Lesser General Public License as published by the Free | |
| # Software Foundation, either version 3 of the License, or (at your option) any | |
| # later version. | |
| # | |
| # This program is distributed in the hope that it will be useful, but WITHOUT |
| <?php | |
| namespace FlorianWolters\Example\Pattern\Design\Creational\Singleton; | |
| /** | |
| * Demonstration of the *Singleton* design pattern in PHP. | |
| * | |
| * This is the correct implementation of the *Singleton* creational design | |
| * pattern in the PHP programming language. | |
| * | |
| * - Prevents cloning of an instance via the `__clone()` magic method. |
| <?php | |
| namespace FlorianWolters\Component\Core; | |
| /** | |
| * A stub class for {@link HashCodeTraitTest} that uses the trait {@link | |
| * HashCodeTrait}. | |
| * | |
| * @author Florian Wolters <[email protected]> | |
| * @copyright 2012 Florian Wolters | |
| * @license http://gnu.org/licenses/lgpl.txt LGPL-3.0+ |
| <?php | |
| namespace FlorianWolters; | |
| /** | |
| * The class {@see NotSoImmutableClass} demonstrates how-to implement the | |
| * *Immutable Object* implementation pattern **incorrectly** | |
| * | |
| * @author Florian Wolters <[email protected]> | |
| * @copyright 2013 Florian Wolters | |
| * @license http://gnu.org/licenses/lgpl.txt LGPL-3.0+ |
| <?php | |
| /** | |
| * FinalKeywordIgnoredInTrait.php | |
| * | |
| * PHP 5.4.13 (cli) (built: Mar 15 2013 02:05:59) | |
| * Copyright (c) 1997-2013 The PHP Group | |
| * Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies | |
| * with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans | |
| * | |
| * @link https://bugs.php.net/bug.php?id=62204 |