Making WordPress.org


Ignore:
Timestamp:
12/19/2017 04:22:37 PM (6 years ago)
Author:
obenland
Message:

PLugins: Clean up formatting with phpcbf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/class-plugin-geopattern-svg.php

    r2994 r6287  
    11<?php
    22namespace WordPressdotorg\Plugin_Directory;
     3
    34use RedeyeVentures\GeoPattern\SVG;
    45
     
    4142
    4243    /**
    43      * @param       $text
    44      * @param       $x
    45      * @param       $y
    46      * @param       $text_anchor
    47      * @param       $style
    48      * @param array $args
     44     * @param string $text
     45     * @param string $x
     46     * @param string $y
     47     * @param string $text_anchor
     48     * @param string $style
     49     * @param array  $args
    4950     *
    5051     * @return $this
    5152     */
    5253    public function addText( $text, $x, $y, $text_anchor, $style, $args = array() ) {
    53         $element = new Plugin_Geopattern_SVGText( $text, $x, $y, $text_anchor, $style, $args );
     54        $element          = new Plugin_Geopattern_SVGText( $text, $x, $y, $text_anchor, $style, $args );
    5455        $this->svgString .= $element;
    5556
Note: See TracChangeset for help on using the changeset viewer.