Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * This file is part of PHPWord - A pure PHP library for reading and writing * ..
Decoded Output download
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Style;
/**
* Paragraph indentation style.
*
* @see http://www.schemacentral.com/sc/ooxml/t-w_CT_Ind.html
* @since 0.10.0
*/
class Indentation extends AbstractStyle
{
/**
* Left indentation (twip).
*
* @var float|int
*/
private $left = 0;
/**
* Right indentation (twip).
*
* @var float|int
*/
private $right = 0;
/**
* Additional first line indentation (twip).
*
* @var float|int
*/
private $firstLine = 0;
/**
* Indentation removed from first line (twip).
*
* @var float|int
*/
private $hanging;
/**
* Create a new instance.
*
* @param array $style
*/
public function __construct($style = [])
{
$this->setStyleByArray($style);
}
/**
* Get left.
*
* @return float|int
*/
public function getLeft()
{
return $this->left;
}
/**
* Set left.
*
* @param float|int $value
*
* @return self
*/
public function setLeft($value)
{
$this->left = $this->setNumericVal($value, $this->left);
return $this;
}
/**
* Get right.
*
* @return float|int
*/
public function getRight()
{
return $this->right;
}
/**
* Set right.
*
* @param float|int $value
*
* @return self
*/
public function setRight($value)
{
$this->right = $this->setNumericVal($value, $this->right);
return $this;
}
/**
* Get first line.
*
* @return float|int
*/
public function getFirstLine()
{
return $this->firstLine;
}
/**
* Set first line.
*
* @param float|int $value
*
* @return self
*/
public function setFirstLine($value)
{
$this->firstLine = $this->setNumericVal($value, $this->firstLine);
return $this;
}
/**
* Get hanging.
*
* @return float|int
*/
public function getHanging()
{
return $this->hanging;
}
/**
* Set hanging.
*
* @param float|int $value
*
* @return self
*/
public function setHanging($value = null)
{
$this->hanging = $this->setNumericVal($value, $this->hanging);
return $this;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Style;
/**
* Paragraph indentation style.
*
* @see http://www.schemacentral.com/sc/ooxml/t-w_CT_Ind.html
* @since 0.10.0
*/
class Indentation extends AbstractStyle
{
/**
* Left indentation (twip).
*
* @var float|int
*/
private $left = 0;
/**
* Right indentation (twip).
*
* @var float|int
*/
private $right = 0;
/**
* Additional first line indentation (twip).
*
* @var float|int
*/
private $firstLine = 0;
/**
* Indentation removed from first line (twip).
*
* @var float|int
*/
private $hanging;
/**
* Create a new instance.
*
* @param array $style
*/
public function __construct($style = [])
{
$this->setStyleByArray($style);
}
/**
* Get left.
*
* @return float|int
*/
public function getLeft()
{
return $this->left;
}
/**
* Set left.
*
* @param float|int $value
*
* @return self
*/
public function setLeft($value)
{
$this->left = $this->setNumericVal($value, $this->left);
return $this;
}
/**
* Get right.
*
* @return float|int
*/
public function getRight()
{
return $this->right;
}
/**
* Set right.
*
* @param float|int $value
*
* @return self
*/
public function setRight($value)
{
$this->right = $this->setNumericVal($value, $this->right);
return $this;
}
/**
* Get first line.
*
* @return float|int
*/
public function getFirstLine()
{
return $this->firstLine;
}
/**
* Set first line.
*
* @param float|int $value
*
* @return self
*/
public function setFirstLine($value)
{
$this->firstLine = $this->setNumericVal($value, $this->firstLine);
return $this;
}
/**
* Get hanging.
*
* @return float|int
*/
public function getHanging()
{
return $this->hanging;
}
/**
* Set hanging.
*
* @param float|int $value
*
* @return self
*/
public function setHanging($value = null)
{
$this->hanging = $this->setNumericVal($value, $this->hanging);
return $this;
}
}
Function Calls
None |
Stats
MD5 | 754d5558b604f7362087f11ebfbd0aeb |
Eval Count | 0 |
Decode Time | 125 ms |