Skip to content

Commit

Permalink
Sorted class uses is documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
szymach committed Jul 1, 2017
1 parent 584f00a commit 08a2937
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 17 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ to post them.

Build status:
=============
[![Build Status](https://scrutinizer-ci.com/g/szymach/c-pchart/badges/build.png?b=master)](https://scrutinizer-ci.com/g/szymach/c-pchart/build-status/master)
[![Build Status](https://scrutinizer-ci.com/g/szymach/c-pchart/badges/build.png?b=master)](https://scrutinizer-ci.com/g/szymach/c-pchart/build-status/master)
[![Build Status](https://scrutinizer-ci.com/g/szymach/c-pchart/badges/build.png?b=2.0)](https://scrutinizer-ci.com/g/szymach/c-pchart/build-status/2.0)

Code quality:
=============
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/2d_pie.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Pie;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Pie;

// Create and populate data
$data = new Data([40, 60, 15, 10, 6, 4], "ScoreA");
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/2d_ring.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Pie;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Pie;

/* Create and populate the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/3d_pie.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Pie;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Pie;

/* Create and populate the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/3d_ring.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Pie;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Pie;

/* Create and populate the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/contour.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Surface;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Surface;

/* Create the Image object */
$image = new Image(400, 400);
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/polar.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Radar;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Radar;

/* Create and populate the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/radar.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Radar;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Radar;

/* Prepare some nice data & axis config */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/scatter_best_fit.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Scatter;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Scatter;

/* Create the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/scatter_line.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Scatter;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Scatter;

/* Create the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/scatter_plot.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Scatter;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Scatter;

/* Create the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/scatter_spline.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Scatter;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Scatter;

/* Create the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/scatter_threshold.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Scatter;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Scatter;

/* Create the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/scatter_threshold_area.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Scatter;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Scatter;

/* Create the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/spring.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Image;
use CpChart\Chart\Spring;
use CpChart\Image;

/* Create the Image object */
$image = new Image(300, 300);
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/stock.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Stock;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Stock;

/* Create and populate the Data object */
$data = new Data();
Expand Down
2 changes: 1 addition & 1 deletion resources/doc/surface.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
```php
require '/path/to/your/vendor/autoload.php';

use CpChart\Chart\Surface;
use CpChart\Data;
use CpChart\Image;
use CpChart\Chart\Surface;

/* Create the Image object */
$image = new Image(400, 400);
Expand Down

0 comments on commit 08a2937

Please sign in to comment.