X-Git-Url: https://git.rapsys.eu/packbundle/blobdiff_plain/7aa6c5a37309a0b063e58a258f28b2561204fed3..72fbddfee92e8573c8ea87b7e321b404d94ed566:/Util/ImageUtil.php

diff --git a/Util/ImageUtil.php b/Util/ImageUtil.php
index 8e111b9..03b4616 100644
--- a/Util/ImageUtil.php
+++ b/Util/ImageUtil.php
@@ -84,20 +84,30 @@ class ImageUtil {
 	 */
 	protected SluggerUtil $slugger;
 
-	//Captcha background
-	protected string $captchaBackground;
+	/**
+	 * The captcha background
+	 */
+	public string $captchaBackground;
 
-	//Captcha fill
-	protected string $captchaFill;
+	/**
+	 * The captcha fill
+	 */
+	public string $captchaFill;
 
-	//Captcha font size
-	protected int $captchaFontSize;
+	/**
+	 * The captcha font size
+	 */
+	public int $captchaFontSize;
 
-	//Captcha stroke
-	protected string $captchaStroke;
+	/**
+	 * The captcha stroke
+	 */
+	public string $captchaStroke;
 
-	//Captcha stroke width
-	protected int $captchaStrokeWidth;
+	/**
+	 * The captcha stroke width
+	 */
+	public int $captchaStrokeWidth;
 
 	/**
 	 * Creates a new image util
@@ -108,23 +118,23 @@ class ImageUtil {
 	 * @param string $path The public path
 	 * @param string $prefix The prefix
 	 */
-	function __construct(RouterInterface $router, SluggerUtil $slugger, string $cache = '../var/cache', string $path = './bundles/rapsyspack', string $prefix = 'image', $captchaBackground = self::captchaBackground, $captchaFill = self::captchaFill, $captchaFontSize = self::captchaFontSize, $captchaStroke = self::captchaStroke, $captchaStrokeWidth = self::captchaStrokeWidth) {
+	function __construct(RouterInterface $router, SluggerUtil $slugger, string $cache = '../var/cache', string $path = './bundles/rapsyspack', string $prefix = 'image', string $captchaBackground = self::captchaBackground, string $captchaFill = self::captchaFill, int $captchaFontSize = self::captchaFontSize, string $captchaStroke = self::captchaStroke, int $captchaStrokeWidth = self::captchaStrokeWidth) {
 		//Set cache
 		$this->cache = $cache.'/'.$prefix;
 
-		//set captcha background
+		//Set captcha background
 		$this->captchaBackground = $captchaBackground;
 
-		//set captcha fill
+		//Set captcha fill
 		$this->captchaFill = $captchaFill;
 
-		//set captcha font size
+		//Set captcha font size
 		$this->captchaFontSize = $captchaFontSize;
 
-		//set captcha stroke
+		//Set captcha stroke
 		$this->captchaStroke = $captchaStroke;
 
-		//set captcha stroke width
+		//Set captcha stroke width
 		$this->captchaStrokeWidth = $captchaStrokeWidth;
 
 		//Set path