Mark Scherer 9 years ago
parent
commit
084c8f8344

+ 1 - 0
src/Model/Behavior/JsonableBehavior.php

@@ -44,6 +44,7 @@ class JsonableBehavior extends Behavior {
 
 	/**
 	 * //TODO: json input/ouput directly, clean
+	 *
 	 * @var array
 	 */
 	protected $_defaultConfig = [

+ 1 - 0
src/Model/Behavior/SluggedBehavior.php

@@ -376,6 +376,7 @@ class SluggedBehavior extends Behavior {
 	 * in multiple locales at once
 	 *
 	 * //FIXME
+	 *
 	 * @param \Cake\ORM\Entity $entity
 	 * @return void
 	 */

+ 1 - 0
src/Model/Behavior/StringBehavior.php

@@ -28,6 +28,7 @@ class StringBehavior extends Behavior {
 
 	/**
 	 * //TODO: json input/ouput directly, clean
+	 *
 	 * @var array
 	 */
 	protected $_defaultConfig = [

+ 2 - 0
src/View/Helper/QrCodeHelper.php

@@ -10,6 +10,7 @@ use Cake\View\View;
  * QR Code Helper
  *
  * based on google chart api
+ *
  * @see http://code.google.com/intl/de-DE/apis/chart/types.html#qrcodes
  *
  * alternative service api / engine: http://goqr.me/api-description/ (not available right now)
@@ -238,6 +239,7 @@ class QrCodeHelper extends Helper {
 	 * //TODO
 	 * calendar event
 	 * e.g.: BEGIN:VEVENT SUMMARY:dfdfd DTSTART:20100226T092900Z DTEND:20100226T102900Z END:VEVENT
+	 *
 	 * @see http://zxing.appspot.com/generator/
 	 * @return void
 	 */

+ 5 - 0
tests/TestCase/Model/Behavior/PasswordableBehaviorTest.php

@@ -196,6 +196,7 @@ class PasswordableBehaviorTest extends TestCase {
 
 	/**
 	 * Test aliases for field names
+	 *
 	 * @return void
 	 */
 	public function testDifferentFieldNames() {
@@ -217,6 +218,7 @@ class PasswordableBehaviorTest extends TestCase {
 
 	/**
 	 * Assert that allowSame false does not allow storing the same password as previously entered
+	 *
 	 * @return void
 	 */
 	public function testNotSame() {
@@ -253,6 +255,7 @@ class PasswordableBehaviorTest extends TestCase {
 
 	/**
 	 * Assert that allowSame false does not allow storing the same password as previously entered
+	 *
 	 * @return void
 	 */
 	public function testNotSameWithoutCurrentField() {
@@ -295,6 +298,7 @@ class PasswordableBehaviorTest extends TestCase {
 
 	/**
 	 * Assert that on edit it does not wrongly pass validation (require => false)
+	 *
 	 * @return void
 	 */
 	public function testRequireFalse() {
@@ -348,6 +352,7 @@ class PasswordableBehaviorTest extends TestCase {
 
 	/**
 	 * Needs faking of pwd check...
+	 *
 	 * @return void
 	 */
 	public function testValidateCurrent() {

+ 3 - 0
tests/TestCase/Utility/MimeTest.php

@@ -63,6 +63,7 @@ class MimeTest extends TestCase {
 
 	/**
 	 * Test fake files
+	 *
 	 * @return void
 	 */
 	public function testCorrectFileExtension() {
@@ -74,6 +75,7 @@ class MimeTest extends TestCase {
 
 	/**
 	 * Test fake files
+	 *
 	 * @return void
 	 */
 	public function testWrongFileExtension() {
@@ -103,6 +105,7 @@ class MimeTest extends TestCase {
 
 	/**
 	 * Test fake files
+	 *
 	 * @return void
 	 */
 	public function testEncoding() {

+ 2 - 0
tests/TestCase/View/Helper/GravatarHelperTest.php

@@ -13,6 +13,7 @@ class GravatarHelperTest extends TestCase {
 
 	/**
 	 * SetUp method
+	 *
 	 * @return void
 	 */
 	public function setUp() {
@@ -26,6 +27,7 @@ class GravatarHelperTest extends TestCase {
 
 	/**
 	 * TearDown method
+	 *
 	 * @return void
 	 */
 	public function tearDown() {

+ 1 - 0
tests/TestCase/View/Helper/TextHelperTest.php

@@ -168,6 +168,7 @@ class TextHelperTest extends TestCase {
 
 	/**
 	 * Combined (emails + urls)
+	 *
 	 * @return void
 	 */
 	public function testAutoLink() {